Answers for "command that adds execute permission to all subdirectories of the current directory for the owner, the group owner and all other users. in linux bash"

1

how to give all permission to a directory in linux

sudo chmod -R ugo+rwx /path/to/folder

// @Zenonymous
Posted by: Guest on December-17-2021
1

find change permissions to subdirectories

sudo find /var/www/html -type d -exec chmod 755 {} \;
Posted by: Guest on June-16-2020

Code answers related to "command that adds execute permission to all subdirectories of the current directory for the owner, the group owner and all other users. in linux bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language