Skip to content

Instantly share code, notes, and snippets.

@paulboardman
Created April 10, 2013 13:49
Show Gist options
  • Save paulboardman/5354789 to your computer and use it in GitHub Desktop.
Save paulboardman/5354789 to your computer and use it in GitHub Desktop.
Find command to locate files with no group write permissions. Execute ls -lh on the file to show permissions.
find . ! -perm /g+r -exec ls -lh {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment