Oh, and the top and unique artists in 2w
$ jq -c 'select(.type=="Song")|[.desc]' .history | sort | uniq -c | sort -nr | head -n10
193 ["Queen"]
178 ["Led Zeppelin"]
157 ["Aerosmith"]
151 ["AC/DC"]
143 ["Journey"]
115 ["Foreigner"]
114 ["Pink Floyd"]
106 ["Van Halen"]
103 ["Tom Petty"]
98 ["Boston"]
$ jq -c 'select(.type=="Song")|[.desc]' .history | sort | uniq | wc -l
120
#radio #jq #shell #bash #scripting