Practice Question Error Found
LPIC-1 Exam 101 (117-101) QID=3038
The command 'find /etc -type d -print' does:
1. displays only the files that are of type 'data' in the /etc directory
2. displays only the files that are of type 'data' in the /etc tree
3. displays only the directories in the /etc tree
4. displays all files and directories in the /etc tree
Wrong!
Correct answer(s): 4
Explanation: The ‘–type d’ option will limit the results to only directories. This command will find all directories in the /etc tree.
Isn´t 3 the correct answer? |