I want to make an chmod command that's recursively will apply the privilegies to all directoris under that. Example:
chmod 666 /usr
I want that every directory under "/usr" turn into permissions to 666.
Thanks in advance.
I want to make an chmod command that's recursively will apply the privilegies to all directoris under that. Example:
chmod 666 /usr
I want that every directory under "/usr" turn into permissions to 666.
Thanks in advance.
First, please learn to read man pages:
$ man chmod
Partway down that page, you will see:
-R, --recursive
change files and directories recursively
And there's your answer.