Skip to content

Instantly share code, notes, and snippets.

@axelav
Created November 29, 2011 02:05
Show Gist options
  • Save axelav/1403031 to your computer and use it in GitHub Desktop.
Save axelav/1403031 to your computer and use it in GitHub Desktop.
alias to delete all m3u files in a directory
# hate m3u playlist files? set up an alias to delete them all.
alias m3u="find . -name '*.m3u' -print0 | xargs -0 rm -v"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment