Which of the following commands will recursively search through all subdirectories from the current directory…?

Which of the following commands will recursively search through all subdirectories from the current directory for files owned by the root user?

Which of the following commands will recursively search through all subdirectories from the current directory for files owned by the root user?

A.
grep -u root .

B.
find . -uid 0

C.
grep -r root .

D.
find . -uname root



Leave a Reply 1

Your email address will not be published. Required fields are marked *