Monthly Archives: November 2007

Recursively chmod directories only

The -type d switch is the key: >  find . -type d -exec chmod 755 {} \; This will recursively search your directory tree (starting at the current directory) and chmod 755 all directories only. Similarly, the following will chmod … Continue reading

Posted in Linux, WebTechnology | Leave a comment