summaryrefslogtreecommitdiff
path: root/share/find-missing-wrapper
blob: 22c3bdd723752f58417e8f0c5e670d3ea72da3e6 (plain)
1
2
3
4
5
#!/bin/sh
jq '.[] | .ds100' stations.json | cut -d '"' -f 2 | shuf | while read line; do
	echo $line
	./find-missing $line | tee -a missing.txt
done