aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xstart.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/start.sh b/start.sh
index 5e80431..0f5c0c8 100755
--- a/start.sh
+++ b/start.sh
@@ -29,17 +29,16 @@ do
;;
esac
done
-
-clear
+echo ""
read -p "Columns of board: " c
read -p "Rows of board: " r
read -p "Number of games to run: " n
read -p "Output file name (please include '.csv'): " o
echo ""
-read -p "This will now run `evaluate` with the given arguments in the foreground. Hit enter to confirm."
+read -p "This will now run with the given arguments in the foreground. Hit enter to confirm." TRASH
(python3 python/evaluate.py -c $c -r $r -n $n -o $o ws://127.0.0.1:20001 ws://127.0.0.1:20002) > evaluate.log
echo ""
-echo "Evaluate log located in evaluate.log"
+echo "Log of evaluate python script located in evaluate.log"
echo "Evaluate has finished! Check the output in $o"
echo "Press enter to finish."