#!/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