|
Then use the -r option to recursively change everything within also. e.g.
cd ~/mydirectory
chmod -r 755 *
If you want to change the permissions on the directory itself also, it's more convenient to do it from the parent directory:
cd ~
chmod -r 755 mydirectory
|