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
E. None of the above
Answer: Option D
Solution (By Examveda Team)
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.
Join The Discussion