Answers for "how to change permissions of files recursively in linux using the chmod command"

CSS
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

Code answers related to "how to change permissions of files recursively in linux using the chmod command"

Browse Popular Code Answers by Language