Skip to content

Instantly share code, notes, and snippets.

@Furao
Created December 21, 2013 03:49
Show Gist options
  • Save Furao/8065139 to your computer and use it in GitHub Desktop.
Save Furao/8065139 to your computer and use it in GitHub Desktop.
One liner to remove files I don't want on my hard drive.
find <root_dir> -name "._*" -exec rm '{}' \; -print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment