Loading practice questions
Which UNIX/Linux command is used to make all files and sub-directories in the directory "progs" executable by all users?
Correct Answer: A — chmod -R a+x progs
Explanation:
The chmod -R a+x progs command recursively (-R) adds (+) execute (x) permissions for all (a) users to the 'progs' directory and its contents.