Created
June 3, 2015 19:14
-
-
Save gbazilio/e8cde6ebb085b306c2bc to your computer and use it in GitHub Desktop.
Recursively removing files with ._ prefix. These files are automatically created by Mac OS.
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 . -name "._*" -exec rm -rf {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment