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