blob: df5112d4837dfffba12f881998795fd36d29d836 (
plain)
1
2
3
4
5
6
|
#!/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
|