Skip to content

Instantly share code, notes, and snippets.

@QuaCKeReD
Created May 17, 2013 16:16
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 QuaCKeReD/5600190 to your computer and use it in GitHub Desktop.
Save QuaCKeReD/5600190 to your computer and use it in GitHub Desktop.
Remove .DS_Store files and .AppleDouble folders http://icesquare.com/wordpress/how-to-remove-ds_store-and-appledouble/
find / -type d -name ".AppleDouble" -depth -exec rm -Rf {} \;
find / -type f -name ".DS_Store" -depth -exec rm {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment