hacks/scrape-jwztv/Makefile

9 lines
152 B
Makefile
Raw Permalink Normal View History

2022-01-09 11:56:45 +00:00
all.txt: all.json
jq -r '"\(.artist) - \(.title)"' all.json | sort | uniq > $@
all.json: *.json
jq '.[]' *.json > $@
clean:
rm -f all.json all.txt