From c07abba437d2c81acafaf8476f0f700a36670de9 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 2 Apr 2014 13:55:26 -0300 Subject: Adding playlist-ls script --- playlist-ls | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 playlist-ls (limited to 'playlist-ls') 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 -- cgit v1.2.3