Valid EX200 Dumps shared by ExamDiscuss.com for Helping Passing EX200 Exam! ExamDiscuss.com now offer the newest EX200 exam dumps, the ExamDiscuss.com EX200 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com EX200 dumps with Test Engine here:
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.
Correct Answer:
see explanation below. Explanation (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.