diff options
author | emkael <emkael@tlen.pl> | 2021-05-29 17:30:20 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2021-05-29 17:30:20 +0200 |
commit | 2eaee2fe846e27603af3df655837968cdf8e2c60 (patch) | |
tree | 379ecd688f4342880a68135b9d6ac6e9df24a11b /dumps/check-all-paid.sh | |
parent | b72cbe1af6507bbe44a82930e312ace82a909280 (diff) |
Script to check players' entry fee
Diffstat (limited to 'dumps/check-all-paid.sh')
-rwxr-xr-x | dumps/check-all-paid.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dumps/check-all-paid.sh b/dumps/check-all-paid.sh new file mode 100755 index 0000000..13082c3 --- /dev/null +++ b/dumps/check-all-paid.sh @@ -0,0 +1,6 @@ +#!/bin/bash +cd $(dirname $0) +cat .paid-queries | while read PARAMS +do + ./check-paid.sh $PARAMS +done |