Loading share/find-missing-wrapper +1 −1 Original line number Diff line number Diff line #!/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 Loading
share/find-missing-wrapper +1 −1 Original line number Diff line number Diff line #!/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