aboutsummaryrefslogtreecommitdiff
path: root/playlist-ls
blob: 1894ae6487cb24b5c8865ae5852cc60e5bf2d140 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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