LPI Exam Questions

Find the files owned by harry, and copy it to catalog: …

Find the files owned by harry, and copy it to catalog: /opt/dir

Answer: See the explanation

Explanation:
# cd /opt/
# mkdir dir
# find / -user harry -exec cp -rfp {} /opt/dir/ \\;