diff options
author | Matt Strapp <strap012@umn.edu> | 2021-04-29 11:05:05 -0500 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2021-04-29 11:05:05 -0500 |
commit | b6a069f24c11cf61735b30eb7e57c7a1644cc8c7 (patch) | |
tree | 305698afee269a932352b263efd3380f75b1b147 | |
parent | Fix markdown (diff) | |
download | csci4511w-b6a069f24c11cf61735b30eb7e57c7a1644cc8c7.tar csci4511w-b6a069f24c11cf61735b30eb7e57c7a1644cc8c7.tar.gz csci4511w-b6a069f24c11cf61735b30eb7e57c7a1644cc8c7.tar.bz2 csci4511w-b6a069f24c11cf61735b30eb7e57c7a1644cc8c7.tar.lz csci4511w-b6a069f24c11cf61735b30eb7e57c7a1644cc8c7.tar.xz csci4511w-b6a069f24c11cf61735b30eb7e57c7a1644cc8c7.tar.zst csci4511w-b6a069f24c11cf61735b30eb7e57c7a1644cc8c7.zip |
Fix some errors and rearrange some variables
-rwxr-xr-x | start.sh | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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." |