diff options
author | Daniel Friesel <derf@finalrewind.org> | 2022-04-02 21:26:40 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2022-04-02 21:26:40 +0200 |
commit | ddcf0dc6591775c864ce9785ba70563cdff15f8a (patch) | |
tree | 83e049b0761ca708a3504d61e5878755d6eec8b6 | |
parent | e5cb6ad97796c2818b4be3d2aa90918d9d8b3462 (diff) |
add find-missing-wrapper helper
-rwxr-xr-x | share/find-missing-wrapper | 5 |
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 |