diff options
author | emkael <emkael@tlen.pl> | 2021-07-11 15:30:54 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2021-07-11 15:30:54 +0200 |
commit | c763002b75c9fc14a5f098a02b0c7edb9e29c7b1 (patch) | |
tree | 3739519b50f38bf793d7a256b314f0cf33a72029 /dumps/check-all-lineups.sh | |
parent | 85849f8daa2ecdd8d20967a6ba699babc27e8b2a (diff) |
Lineup check scripts
Diffstat (limited to 'dumps/check-all-lineups.sh')
-rwxr-xr-x | dumps/check-all-lineups.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dumps/check-all-lineups.sh b/dumps/check-all-lineups.sh new file mode 100755 index 0000000..9bab79e --- /dev/null +++ b/dumps/check-all-lineups.sh @@ -0,0 +1,6 @@ +#!/bin/bash +cd $(dirname $0) +cat .paid-queries | cut -d' ' -f1 | while read DB +do + ./check-lineups.sh $DB +done |