Monthly Archives: September 2013

Recursively CHMOD Only Files or Directories via Command Line

Using the commands below, you can recursively chmod a large number of files or directories. Directories find . -type d -exec chmod 755 {} \; Files find . -type f -exec chmod 644 {} \; Important: Remember to the command … Continue reading

Posted in FAQ | Tagged , , , | Leave a comment