Answers for "give rights recursicle linux"

CSS
8

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

Browse Popular Code Answers by Language