Recursively chmod Directories
Login | Register RSS
08/05/2011 - Linux 

Recursively chmod Directories

To recursively chmod directories only, use this command:

find /some/folder -type d -exec chmod 755 {} \;

This will recursively search your directory tree (starting at directory ‘folder’) and chmod 755 all directories only.


If you like this site or any of its content, please help promote it. Use the social media buttons below to help spread the word. Don't forget to post in the comments section.

  Print   Email