Answers for "change permissions directory linux recursively"

0

how to give permission recursively in linux

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

recursively change file permissions linux

find /var/www/html -type d -exec chmod 755 {} ;find /var/www/html -type f -exec chmod 644 {} ;
Posted by: Guest on January-08-2022

Code answers related to "change permissions directory linux recursively"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language