Skip to content

Instantly share code, notes, and snippets.

@clarencetw
Forked from cillosis/MacFileRemoverForSVN
Created April 2, 2016 01:12
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 clarencetw/a00f664bf09712f6d1cb6e2eb996b82e to your computer and use it in GitHub Desktop.
Save clarencetw/a00f664bf09712f6d1cb6e2eb996b82e to your computer and use it in GitHub Desktop.
Remove ._. and .DS_* files from folder on Mac OS X
find . -type f \( -iname "._*" \) -exec svn delete {} \;
find . -type f \( -iname ".DS_*" \) -exec svn delete {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment