Answers for "how to give permission recursively in linux"

7

chmod recursive

-R, --recursive

chmod -R 755 /path/to/directory
Posted by: Guest on May-20-2020
1

find change permissions to subdirectories

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

how to give permission recursively in linux

chmod -R u=rwx,go=rx /tofile_path
Posted by: Guest on August-01-2020
0

change permissions for specific file types linux

find . -name "*.sh" -exec chmod +x {} \;
Posted by: Guest on July-15-2020
0

give full permission to folder and subfolders in linux

linux folder
Posted by: Guest on July-23-2020

Code answers related to "how to give permission recursively in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language