Find Change Permissions To Subdirectories

[Solved] Find Change Permissions To Subdirectories | Perl - Code Explorer | yomemimo.com
Question : change permissions on all files in all sub-directories

Answered by : al-pinto

find /path/to/directory -type f -exec chmod 664 {} \;

Source : https://my.ciesin.columbia.edu/wiki/spaces/viewspace.action?key=~apinto | Last Update : Tue, 15 Mar 22

Question : change permissions on all sub-directories

Answered by : al-pinto

find /path/to/directory -type d -exec chmod 775 {} \;

Source : https://my.ciesin.columbia.edu/wiki/spaces/viewspace.action?key=~apinto | Last Update : Tue, 15 Mar 22

Question : find change permissions to subdirectories

Answered by : nice-narwhal-mukh663bd1eq

sudo find /var/www/html -type d -exec chmod 755 {} \;

Source : https://tecadmin.net/change-permissions-on-folder-and-sub-folders-recursively/ | Last Update : Tue, 23 Jun 20

Answers related to find change permissions to subdirectories

Code Explorer Popular Question For Perl