#!/bin/bash
jq '.[] | .ds100' stations.json | cut -d '"' -f 2 | shuf | while read line; do
	echo $line
	perl -I../lib ./find-missing $line | tee -a missing.txt
	sleep $(( RANDOM % 10 ))
done