diff options
-rwxr-xr-x | ausbutler-all.sh | 7 | ||||
-rwxr-xr-x | ausbutler-single.sh | 15 | ||||
-rwxr-xr-x | ausbutler.sh | 7 |
3 files changed, 22 insertions, 7 deletions
diff --git a/ausbutler-all.sh b/ausbutler-all.sh new file mode 100755 index 0000000..2bc2d80 --- /dev/null +++ b/ausbutler-all.sh @@ -0,0 +1,7 @@ +#!/bin/bash +set -eu +cd "$(dirname "$0")" +while read -r TOURNAMENT +do + ./ausbutler-single.sh $TOURNAMENT +done < tournaments.txt diff --git a/ausbutler-single.sh b/ausbutler-single.sh new file mode 100755 index 0000000..a8f9271 --- /dev/null +++ b/ausbutler-single.sh @@ -0,0 +1,15 @@ +#!/bin/bash +set -eu +TOURNAMENT=$1 +cd "$(dirname "$0")" + +echo "Processing $TOURNAMENT..." +echo "" + +ln -sfn configs/config.$TOURNAMENT config +python jfrteamy-ausbutler/butler.py calculate generate nowait + +echo "" +echo "Done" +echo "" + diff --git a/ausbutler.sh b/ausbutler.sh deleted file mode 100755 index c1a9112..0000000 --- a/ausbutler.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -cd "$(dirname "$0")" -while read -r TOURNAMENT -do - ln -sfn configs/config.$TOURNAMENT config - python jfrteamy-ausbutler/butler.py calculate generate nowait -done < tournaments.txt |