Monthly Archives: November 2007

Recursively chmod directories only

Recursively chmod directories only June 19th, 2006 find . -type d -exec chmod 755 {} \; This will recursively search your directory tree (starting at dir ‘dot’) and chmod 755 all directories only. Similarly, the following will chmod all files … Continue reading

Posted in Linux, WebTechnology | Leave a comment