diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-09-18 16:36:30 -0300 |
---|---|---|
committer | Silvio Rhatto <user@example.org> | 2014-09-18 16:36:30 -0300 |
commit | 221e7d6d0de9f58d0d82ba42a9fc55a157706f6d (patch) | |
tree | bf0b0e7ff4502c231cc02834618bbaa80c8e2adb /playlist-ls | |
download | playlister-221e7d6d0de9f58d0d82ba42a9fc55a157706f6d.tar.gz playlister-221e7d6d0de9f58d0d82ba42a9fc55a157706f6d.tar.bz2 |
Initial import
Diffstat (limited to 'playlist-ls')
-rwxr-xr-x | playlist-ls | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/playlist-ls b/playlist-ls new file mode 100755 index 0000000..1894ae6 --- /dev/null +++ b/playlist-ls @@ -0,0 +1,16 @@ +#!/bin/bash +# +# Get files for playlist using git-annex and mpd +# + +# Parameters +BASENAME="`basename $0`" +PLAYLIST="$1" +MEDIA="/var/cache/media/noise" +PLAYLISTS="$MEDIA/playlists" + +if [ -z "$PLAYLIST" ]; then + ls -C $PLAYLISTS +elif [ -f "$PLAYLISTS/$PLAYLIST.m3u" ]; then + cat "$PLAYLISTS/$PLAYLIST.m3u" +fi |