summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xshare/find-missing-wrapper5
1 files changed, 5 insertions, 0 deletions
diff --git a/share/find-missing-wrapper b/share/find-missing-wrapper
new file mode 100755
index 0000000..22c3bdd
--- /dev/null
+++ b/share/find-missing-wrapper
@@ -0,0 +1,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