Created
February 13, 2016 13:50
-
-
Save reasonset/e47fb9ce9c70abbbbfac to your computer and use it in GitHub Desktop.
Convert SMplayer(Linux)'s playlist to COWON M2 media player's playlist.
This file contains 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
#!/usr/bin/zsh | |
playlist_file="$1" | |
shift | |
perl -p -e 's:/:\\:g;' -e 'print "\\" if m/^[^\s#]/;' "$playlist_file" >| ${playlist_file:s/-utf8.m3u/.m3u} | |
mv -v "$playlist_file" ~/local/cowon-m2/playlists/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment