Skip to content

Instantly share code, notes, and snippets.

@stemwinder
Last active December 15, 2015 11:48
Show Gist options
  • Save stemwinder/5255268 to your computer and use it in GitHub Desktop.
Save stemwinder/5255268 to your computer and use it in GitHub Desktop.
Recursively removes files from bash shell
find . -name '.DS_Store' -print0 | xargs -0 rm
find . -name ".DS_Store" -depth -exec rm {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment