From b6a069f24c11cf61735b30eb7e57c7a1644cc8c7 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Thu, 29 Apr 2021 11:05:05 -0500 Subject: Fix some errors and rearrange some variables --- start.sh | 7 +++---- 1 file 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." -- cgit v1.2.3