Answers for "change permissions linux recursive files"

CSS
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 linux recursive files"

Browse Popular Code Answers by Language