Skip to content

Instantly share code, notes, and snippets.

@yohangdev
Created September 23, 2014 04:06
Show Gist options
  • Save yohangdev/a41535af4d3e83b1a409 to your computer and use it in GitHub Desktop.
Save yohangdev/a41535af4d3e83b1a409 to your computer and use it in GitHub Desktop.
Chmod all files (644), folder (755), and subdirectories
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