You want to find all the files which belong to user X in a system. How would you do that?
Options
- find /-owner X -print
- find /-user X -print
- find /-name user X -print
- find /-name X -print
CORRECT ANSWER : find /-user X -print
Write your comments