summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xshare/find-missing-wrapper3
1 files changed, 2 insertions, 1 deletions
diff --git a/share/find-missing-wrapper b/share/find-missing-wrapper
index 22c3bdd..ae5792c 100755
--- a/share/find-missing-wrapper
+++ b/share/find-missing-wrapper
@@ -1,5 +1,6 @@
-#!/bin/sh
+#!/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