Skip to content

Instantly share code, notes, and snippets.

@gbazilio
Created June 3, 2015 19:14
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 gbazilio/e8cde6ebb085b306c2bc to your computer and use it in GitHub Desktop.
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.
find . -name "._*" -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment