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