Skip to content

Instantly share code, notes, and snippets.

@emarashliev
Created April 13, 2014 19:18
Show Gist options
  • Save emarashliev/10598184 to your computer and use it in GitHub Desktop.
Save emarashliev/10598184 to your computer and use it in GitHub Desktop.
Recursively remove files
find . -name ".DS_Store" -print0 | xargs -0 rm -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment