Skip to content

Instantly share code, notes, and snippets.

@efeminella
Created April 2, 2013 17:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save efeminella/5293992 to your computer and use it in GitHub Desktop.
Save efeminella/5293992 to your computer and use it in GitHub Desktop.
Recursively delete all (ever annoying) .DS_Store files.
function killDs() {
find . -name ".DS_Store" -exec rm -rf {} \;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment