Skip to content

Instantly share code, notes, and snippets.

@crofty
Created December 31, 2011 13:51
Show Gist options
  • Save crofty/1544053 to your computer and use it in GitHub Desktop.
Save crofty/1544053 to your computer and use it in GitHub Desktop.
Remove mp3 files of size <500K
find . -name '*.mp3' -size -500k -exec rm -f {} \;
# Remove m3u
find . -name '*.m3u' -exec rm -f {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment