diff options
author | emkael <emkael@tlen.pl> | 2021-06-12 20:59:53 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2021-06-12 21:05:32 +0200 |
commit | aa80a70ca494f5063c5b19cceb3ea8b0caa31694 (patch) | |
tree | 83db020706400c0a4e3f9ebf3574bafa3fe63cd8 /dumps/check-all-teams.sh | |
parent | 4b7d785ee64b1ef9590eacf47ea91ec6c8b3c0ec (diff) |
Player-team checks with magic Cezar CSV
Diffstat (limited to 'dumps/check-all-teams.sh')
-rwxr-xr-x | dumps/check-all-teams.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dumps/check-all-teams.sh b/dumps/check-all-teams.sh new file mode 100755 index 0000000..24702ab --- /dev/null +++ b/dumps/check-all-teams.sh @@ -0,0 +1,6 @@ +#!/bin/bash +cd $(dirname $0) +cat .paid-queries | cut -d' ' -f1 | while read DB +do + ./check-teams.sh $DB +done |