Skip to content

Instantly share code, notes, and snippets.

@ophentis
Created March 19, 2013 07:20
Show Gist options
  • Save ophentis/5194276 to your computer and use it in GitHub Desktop.
Save ophentis/5194276 to your computer and use it in GitHub Desktop.
rec change owner and file mode
find . -exec sudo chown www-data.adm {} \;
find . -type d -exec sudo chmod 775 {} \;
find . -type f -exec sudo chmod 664 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment