diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2023-07-09 14:34:24 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2023-07-09 14:34:24 +0200 |
commit | 6f36f8cb531bc0447725df2f183cc7e7d6069244 (patch) | |
tree | 3b2964ad05dab6f87c1e2e594bd56f2aed2aa685 /share | |
parent | 1eb07fd2bc3218a775e65c766633973a694b9bf6 (diff) |
find-missing-wrapper: use up-to-date IRIS version fo find-missing
Diffstat (limited to 'share')
-rwxr-xr-x | share/find-missing-wrapper | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/find-missing-wrapper b/share/find-missing-wrapper index ae5792c..df5112d 100755 --- a/share/find-missing-wrapper +++ b/share/find-missing-wrapper @@ -1,6 +1,6 @@ #!/bin/bash jq '.[] | .ds100' stations.json | cut -d '"' -f 2 | shuf | while read line; do echo $line - ./find-missing $line | tee -a missing.txt + perl -I../lib ./find-missing $line | tee -a missing.txt sleep $(( RANDOM % 10 )) done |