00:00

QUESTION 36

1. Find all sizes of 10k file or directory under the /etc directory, and copy to /tmp/findfiles directory.
* 2. Find all the files or directories with Lucy as the owner, and copy to /tmp/findfiles directory.
Solution:
(1)find /etc -size 10k -exec cp {} /tmp/findfiles ;
(2)find / -user lucy -exec cp -a {} /tmp/findfiles ;
Note: If find users and permissions, you need to use cp - a options, to keep file permissions and user attributes etc.

Does this meet the goal?

Correct Answer: A