Skip to content

Instantly share code, notes, and snippets.

@kmader
Created March 9, 2016 07:16
Show Gist options
  • Save kmader/36d78b05fbd9ed509c9a to your computer and use it in GitHub Desktop.
Save kmader/36d78b05fbd9ed509c9a to your computer and use it in GitHub Desktop.
Clean invisible garbage from Dropbox
find . -type f -name "*._*" # list the files
find . -type f -name "*._*" -exec rm {} \; # delete them
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment