Skip to content

Instantly share code, notes, and snippets.

@mousepotato
Created July 14, 2013 01:18
Show Gist options
  • Save mousepotato/5992812 to your computer and use it in GitHub Desktop.
Save mousepotato/5992812 to your computer and use it in GitHub Desktop.
remove all .DS_Store and .AppleDouble file
find . -name ".DS_Store" -exec rm {} \;
find . -name \.AppleDouble -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment