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
| # copy and paste the line corresponding to desired output | |
| # stupid security crap in the OS might mean you have to give Terminal permissions or something, I dunno. | |
| # Output format: "Artist - Title" | |
| # Sorted by artist, remove duplicates. | |
| sqlite3 ~/Library/Application\ Support/com.apple.shazamd/ShazamLibrary.sqlite "select ZSUBTITLE, ZTITLE from ZSHTRACKMO;" | sed 's_|_ - _g' | sort | uniq | |
| # Oldest to newest (I think). Retain duplicates. |