-
-
Save florido/443fccc2bcc194bd8f09e55384b15b99 to your computer and use it in GitHub Desktop.
Retrieve file location of all items in the iTunes Library
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Extract file location of each item from iTunes Music Library.xml (renamed to iTunes.xml) | |
sed -n 's/.*<key>Location<\/key><string>\([^<]*\)<\/string>.*/\1/p' iTunes.xml > FileLocation.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment