#!/bin/sh

osascript -e 'tell application "iTunes"' \
	-e 'set temp to (get name of track 1 of playlist "Library")' \
	-e 'display dialog "Total Tracks"'  \
	-e 'echo $temp'\
	-e 'end tell'\

echo $temp

exit 0
