Skip to content

Instantly share code, notes, and snippets.

@Program-O
Created May 29, 2014 11:37
Show Gist options
  • Save Program-O/cee3856b5808a63f1a5c to your computer and use it in GitHub Desktop.
Save Program-O/cee3856b5808a63f1a5c to your computer and use it in GitHub Desktop.
Recursively chmod all files to 644 and all directories to 755
find . -type d -print0 | xargs -0 chmod 0755 # for directories
find . -type f -print0 | xargs -0 chmod 0644 # for files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment