Skip to content

Instantly share code, notes, and snippets.

@alvinsj
Created March 26, 2013 12:32
Show Gist options
  • Save alvinsj/5245030 to your computer and use it in GitHub Desktop.
Save alvinsj/5245030 to your computer and use it in GitHub Desktop.
chmod 644 to files, 755 to directories
$ find /path/to/dir -type f -print0 | xargs -I {} -0 chmod 0644 {}
$ find /path/to/dir -type d -print0 | xargs -I {} -0 chmod 0755 {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment