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