]> gitweb.fluxo.info Git - scripts.git/commitdiff
Adding playlist-ls script
authorSilvio Rhatto <rhatto@riseup.net>
Wed, 2 Apr 2014 16:55:26 +0000 (13:55 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Wed, 2 Apr 2014 16:55:26 +0000 (13:55 -0300)
playlist-get
playlist-ls [new file with mode: 0755]

index d6b7d63da70b78d0292c087288822720646b3e7f..d43e296b44943c1da84569b2895df88ac02842be 100755 (executable)
@@ -33,6 +33,7 @@ elif [ "$BASENAME" == "playlist-copy" ]; then
     exit 1
   fi
 
+  DEST="--to $DEST"
   command="copy"
 else
   command="get"
diff --git a/playlist-ls b/playlist-ls
new file mode 100755 (executable)
index 0000000..1894ae6
--- /dev/null
@@ -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