What would the following line accomplish if run as root?
chown -R bert /home/bert/*
A.
Nothing, this command is invalid.
B.
It would revoke bert’s ownership of all files in /home/bert to bert.
C.
It would change user ownership of all files in /home/bert to bert.
D.
It would set the group ownership of the directory /home/bert to bert
E.
It would set ownership of all files and subdirectories in /home/bert to bert
Explanation/Reference:
From the man pages:
chown changes the user and/or group ownership of each given file. -R operate on files and directories recursively
Correct Answer: E
I have the same idea.