#!/bin/sh

case $1 in

osascript -e 'tell application "iTunes"' \
	-e 'set my_track to track 4 of playlist "Library"'\
	-e 'set tempa to name of my_track'\
	-e 'set tempb to artist of my_track'\
	-e 'end tell'

echo $tempa
echo $tempb

exit 0
