-
-
Save axelav/1403031 to your computer and use it in GitHub Desktop.
alias to delete all m3u files in a directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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