nerdexam
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

  1. 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

Reference. https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/9/html/managing_file_systems/monitoring-and-managing-files-with-linux-commands_managing-file-systems

Topics

#find command#file management#directory management#user files

Community Discussion

No community discussion yet for this question.

Full EX200 Practice