#!/bin/sh

case $1 in

nt)
osascript -e 'tell application "iTunes"' \
	-e 'repeat with aTrack in playlist "Library"'\
	-e 'set tempa to (get name)'\
	-e 'set tempb to (get artist)'\
	-e 'set tempc to (get location)'\
	-e 'end repeat'\
	-e 'end tell'

echo $tempa

;;

'')

echo "Itunes Helper"
echo "Dog"

esac
