Skip to content

Instantly share code, notes, and snippets.

@neocoder
Created February 23, 2012 07:54
Show Gist options
  • Save neocoder/1891404 to your computer and use it in GitHub Desktop.
Save neocoder/1891404 to your computer and use it in GitHub Desktop.
Remove .DS_Store and ._* files
find . -iname ".DS_Store" -exec rm {} \;
find . -iname "._*" -exec rm {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment