Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Playlist generator (See related posts)

Bash script to generate a playlist with all your mp3s and oggs in.

rm ~/Desktop/playlist.m3u
find ~/music/ -iname "*.mp3" -print >> ~/Desktop/playlist.m3u
find ~/music/ -iname "*.ogg" -print >> ~/Desktop/playlist.m3u

You need to create an account or log in to post comments to this site.


Click here to browse all 4858 code snippets

Related Posts