From 553f2d6b669cf25dbf18ca2437676080980fb953 Mon Sep 17 00:00:00 2001 From: starlightng <100170729+starlightng@users.noreply.github.com> Date: Wed, 11 Jan 2023 17:05:12 +0100 Subject: [PATCH] Update switch1.sh --- switch1.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/switch1.sh b/switch1.sh index e4568aa..e171e55 100644 --- a/switch1.sh +++ b/switch1.sh @@ -1,20 +1,20 @@ -echo "Please enter the number 1 to 5 only" +echo "Please enter a number between 1 and 5 only" read num case $num in 1) -echo "you have type one in the correct number range" +echo "you have typed one in the correct number range" ;; 2) -echo "you have type two in the correct number range" +echo "you have typed two in the correct number range" ;; 3) -echo "you have type 3 in the correct number range" +echo "you have typed 3 in the correct number range" ;; *) -echo "you have to type 1 to 5" -echo "you have type an invalid number range" +echo "you have to type a number between 1 to 5" +echo "you have typed an invalid number range" ;; esac