Skip to content

Instantly share code, notes, and snippets.

@CristianGiordano
Created December 4, 2013 11:13
Show Gist options
  • Save CristianGiordano/7785925 to your computer and use it in GitHub Desktop.
Save CristianGiordano/7785925 to your computer and use it in GitHub Desktop.
Reset folder & file permissions.
// Files
find . -type f -print0 | xargs -0 chmod 644
// Folders
find . -type d -print0 | xargs -0 chmod 755
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment