#!/bin/bashfind `pwd`$1 > /tmp/playlistmplayer -loop 0 -shuffle -playlist /tmp/playlist
On the contrary, doesn't work. :)
let mplayer play just mp3, ogg and wma#!/bin/bashfind "`pwd`$1" -regex '.+\.\(mp3\|ogg\|wma\)' > /tmp/playlistmplayer -loop 0 -shuffle -playlist /tmp/playlist
2 comments: