Vidyalelo
Computer Science · Q10

UNIX

Engineering and GATE · Computer Science · question 10

Q10

Which command is used to remove the read permission of the file 'note' from both the group and others?

A.
chmod go+r note
B.
chmod go+rw note
C.
chmod go-x note
D.
chmod go-r note
Answer
E.
None of the above

Answer: Option D

Solution

Answer: Option D
Solution:
In Unix, the chmod command is used to change the permissions of a file. Here, go-r specifies that read permission should be removed for both the group (g) and others (o).
So, chmod go-r note is the correct command to remove the read permission of the file 'note' from both the group and others.