Skip to content

Instantly share code, notes, and snippets.

@existme
Last active August 29, 2015 14:27
Show Gist options
  • Save existme/292bb77616a4badc6353 to your computer and use it in GitHub Desktop.
Save existme/292bb77616a4badc6353 to your computer and use it in GitHub Desktop.
Find and fix files that a user doesn't have access
find \! -user UNAME -ls
find \! -user UNAME -print0 |xargs -0 sudo chown UNAME:GROUP
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment