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