Computer Science - Unix - Discussion

Discussion Forum : Unix - Section 1 (Q.No. 40)
40.
Which command is used to make all files and sub-directories in the directory (progs) executable by all users?
chmod -R a+x progs
chmod -R 222 progs
chmod -1 a+x progs
chmod -x a+x progs
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
4 comments Page 1 of 1.

Reshma said:   7 years ago
You are correct @Nikhil.

Nikhil said:   1 decade ago
Its not like that if its executable it doesn't mean they have read, write access.

Priti sule said:   1 decade ago
R is for recursive directories and (a+x) describes all have execute permission. And if they have execute permission then by default they have read write permission also.
(2)

Ganesh said:   1 decade ago
-R is for recurssive directories and sub directories

Post your comments here:

Your comments will be displayed after verification.