Skip to content

Instantly share code, notes, and snippets.

@buurzx
Created May 23, 2017 08:52
Show Gist options
  • Save buurzx/390662df83a79ff365b9fd6ea91dd68a to your computer and use it in GitHub Desktop.
Save buurzx/390662df83a79ff365b9fd6ea91dd68a to your computer and use it in GitHub Desktop.
To change all the directories to 755 (drwxr-xr-x):
find /opt/lampp/htdocs -type d -exec chmod 755 {} \;
To change all the files to 644 (-rw-r--r--):
find /opt/lampp/htdocs -type f -exec chmod 644 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment