Posted by: Pdfprep
Post Date: December 8, 2020
CORRECT TEXT
Search files.
Find out files owned by jack, and copy them to directory /root/findresults
Answer: see explanation below.
Explanation
mkdir/root/findfiles
find / -user jack -exec cp -a {} /root/findfiles/ ; ls /root/findresults
Leave a Reply