Red_Hat
EX200 · Question #10
10. Find Files Find all files belonging to the user "jacques" and move them to the directory /root/findfiles under the root directory. Correct Answer: See the below explanation Explanation Explanation
Sign in or unlock EX200 to reveal the answer and full explanation for question #10. The question stem and answer options stay visible for context.
Submitted by minji_kr· Apr 18, 2026Understand and Use Essential Tools
Question
- Find Files Find all files belonging to the user "jacques" and move them to the directory /root/findfiles under the root directory. Correct Answer: See the below explanation Explanation Explanation/Reference: Solution: [root@node1 ~]# mkdir /root/findfiles [root@node1 ~]# find / -user jacques [root@node1 ~]# find / -user jacques -exec cp -a {} /root/findfiles ;
Unlock EX200 to see the answer
You've previewed enough free EX200 questions. Unlock EX200 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.
Topics
#find command#file management#directory management#user files