-
-
Save clarencetw/a00f664bf09712f6d1cb6e2eb996b82e to your computer and use it in GitHub Desktop.
Remove ._. and .DS_* files from folder on Mac OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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