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…
This task requires finding all files belonging to the user jacques and moving them into a new directory, /root/findfiles.
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 ;
Explanation
This task requires finding all files belonging to the user jacques and moving them into a new directory, /root/findfiles.
Concept tested. Finding and copying files by user
Topics
#find command#file management#directory management#user files
Community Discussion
No community discussion yet for this question.