Question 11053 – Operating-Systems
January 6, 2024GATE 2005-IT
January 6, 2024Question 11054 – Operating-Systems
The shell command
find -name passwd -print
is executed in /etc directory of a computer system running Unix. Which of the following shell commands will give the same information as the above command when executed in the same directory?
Correct Answer: C
Question 2 Explanation:
Note: Out of syllabus.
ls passwd
cat passwd
grep name passwd
grep print passwd
