Skip to content

Instantly share code, notes, and snippets.

@unicodefreak
Created March 12, 2012 21:36
Show Gist options
  • Save unicodefreak/2024832 to your computer and use it in GitHub Desktop.
Save unicodefreak/2024832 to your computer and use it in GitHub Desktop.
# remove all useless files from music directory
find . \( ! -iname "*.mp3" ! -iname "*.jpg" ! -iname "*.flac" ! -iname "*.png" ! -iname "*.jpeg" ! -iname "*.m4a" ! -iname "*.zip" ! -iname "*.avi" ! -iname "*.cue" ! -iname "*.ape" \) -type f -print0 | xargs -0 rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment