hacks/scrape-jwztv/Makefile

9 lines
152 B
Makefile

all.txt: all.json
jq -r '"\(.artist) - \(.title)"' all.json | sort | uniq > $@
all.json: *.json
jq '.[]' *.json > $@
clean:
rm -f all.json all.txt