summaryrefslogtreecommitdiff
path: root/batch/100-run-beginner-bad.sh
diff options
context:
space:
mode:
Diffstat (limited to 'batch/100-run-beginner-bad.sh')
-rw-r--r--batch/100-run-beginner-bad.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/batch/100-run-beginner-bad.sh b/batch/100-run-beginner-bad.sh
index f66ea22..ab62e2e 100644
--- a/batch/100-run-beginner-bad.sh
+++ b/batch/100-run-beginner-bad.sh
@@ -1,8 +1,9 @@
#!/bin/bash
+OPTIONS="-b -a -u"
let COUNT=100
let WINS=0
for ((i=0;i<COUNT;i++)); do
- python3 miinaharava -b -a -u && let WINS++;
+ python3 miinaharava $OPTIONS && let WINS++;
done
let PERCENT=100*WINS/COUNT
echo -ne "\n\n## Voittoja $WINS/$COUNT ($PERCENT%)\n\n"