Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Parse iTunes Library.xml into a readable text file*censored*AppleSCript' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Parse iTunes Library.xml into a readable text file*censored*AppleSCript
Authored by: DougAdams on Oct 06, '04 04:20:44PM
AppleScript version:
set the_command to "grep \"<key>Location</key>\" " & ¬
	"\"$HOME/Music/iTunes/iTunes Music Library.xml\"" & ¬
	" | sed -e 's/<key>Location<\\/key><string>//g' -e 's/<\\/string>//g' " & ¬
	"-e 's/%20/ /g' -e s/^[^fhr]*//g | sort > $HOME/Desktop/iTunes.txt"

do shell script the_command

Save as a compiled script or just run it from Script Editor.

[ Reply to This | # ]