Skip to content

Instantly share code, notes, and snippets.

@paulboardman
Created April 10, 2013 13:52
Show Gist options
  • Save paulboardman/5354835 to your computer and use it in GitHub Desktop.
Save paulboardman/5354835 to your computer and use it in GitHub Desktop.
Find command to find files that are not group read or (inclusive) writeable and updates their permissions.
find . ! -perm /g+rw -exec chmod g+rw {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment