Question 24:
SIMULATION - Search files. Find out files owned by jack, and copy them to directory /root/findresults
Answer correct:
See explanation below.
mkdir/root/findfiles find / -user jack -exec cp -a {} /root/findfiles/ \; ls /root/findresults