summaryrefslogtreecommitdiff
path: root/share/find-missing-wrapper
diff options
context:
space:
mode:
Diffstat (limited to 'share/find-missing-wrapper')
-rwxr-xr-xshare/find-missing-wrapper6
1 files changed, 6 insertions, 0 deletions
diff --git a/share/find-missing-wrapper b/share/find-missing-wrapper
new file mode 100755
index 0000000..df5112d
--- /dev/null
+++ b/share/find-missing-wrapper
@@ -0,0 +1,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