Skip to content

Instantly share code, notes, and snippets.

@martijngastkemper
Last active August 29, 2015 14:13
Show Gist options
  • Save martijngastkemper/cfbed9fe9549a8b9556c to your computer and use it in GitHub Desktop.
Save martijngastkemper/cfbed9fe9549a8b9556c to your computer and use it in GitHub Desktop.
Find all directories of a user and change the owner and group of that directory recursive.
find . -user userA -type d -exec chown -R userB:groupX {} +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment