diff options
Diffstat (limited to 'ausbutler-all.sh')
-rwxr-xr-x | ausbutler-all.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ausbutler-all.sh b/ausbutler-all.sh index 2bc2d80..6877d13 100755 --- a/ausbutler-all.sh +++ b/ausbutler-all.sh @@ -1,7 +1,7 @@ #!/bin/bash set -eu cd "$(dirname "$0")" -while read -r TOURNAMENT +grep -v '^#' tournaments.txt | while read -r TOURNAMENT do ./ausbutler-single.sh $TOURNAMENT -done < tournaments.txt +done |