From ef17bf01e7471f27c93d3080e80adf228569a924 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Fri, 30 Apr 2021 08:39:48 -0500 Subject: Fix both scripts not using the right ws ports given --- start.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'start.sh') diff --git a/start.sh b/start.sh index c7560e5..0414224 100755 --- a/start.sh +++ b/start.sh @@ -2,19 +2,25 @@ #Bash script for automating evaluate echo "Dots and Boxes Agent Shell Script: Ver 1.0RC2: adding options" -while getopts 'w:p:h:' opt; do +while getopts ':w:p:h:' opt; do case $opt in w) WEB=$OPTARG;; p) PORT=$OPTARG;; h) echo "Usage: ./start.sh -w (web port) -p (starting agent port)" exit 0;; + \?) + echo "Invalid option: -$OPTARG" >&2 + echo "Usage: ./start.sh -w (web port) -p (starting agent port)" + exit 1;; *) echo "Usage: ./start.sh -w (web port) -p (starting agent port)" exit 1;; + esac done (python3 python/dotsandboxes/dotsandboxesserver.py $WEB) >> server.log & echo "Web server running on http://127.0.0.1:$WEB" +PORT=`expr $PORT - 1`; for a in 1 2 do -- cgit v1.2.3