LPI Exam Questions

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

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

Answer: A

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