1 
 2 
 3 
 4 
 5 
 6 
 7 
 8 
 9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
#!/bin/sh

# Needed for the SONGS list
IFS=''

# Change to the artist you want
ARTIST='Example'

# Change to the album you want
ALBUM='Example'

#Put songs to the album here
SONGS=(
    'Example'
)

# Uncomment for infinite loop
#while true
#do
    for SONG in ${SONGS[*]}
    do
        echo -e "a = ${ARTIST}\nt = ${SONG}\nb = ${ALBUM}\nm = (null)\ni = `date '+%s'`\nl = 999\no = P\n"
        sleep 1
    done
#done