From a436d55f239ab368e612f6a6e14676c7b2ff359d Mon Sep 17 00:00:00 2001 From: Siddhu Date: Fri, 8 Dec 2017 00:18:19 +0530 Subject: [PATCH] fix for escape char --- advanced/Scripts/webpage.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/advanced/Scripts/webpage.sh b/advanced/Scripts/webpage.sh index 5dd21e56..517afba0 100755 --- a/advanced/Scripts/webpage.sh +++ b/advanced/Scripts/webpage.sh @@ -108,7 +108,7 @@ SetWebPassword() { # Prevents a bug if the user presses Ctrl+C and it continues to hide the text typed. # So we reset the terminal via stty if the user does press Ctrl+C trap '{ echo -e "\nNo password will be set" ; stty sane ; exit 1; }' INT - read -s -p "Enter New Password (Blank for no password): " PASSWORD + read -s -p "Enter New Password \(Blank for no password\): " PASSWORD echo "" if [ "${PASSWORD}" == "" ]; then @@ -609,7 +609,7 @@ main() { "-sc" ) ClearSpeedtestData;; "-ss" ) SpeedtestServer;; "audit" ) audit;; - * ) helpFunc;; + "*" ) helpFunc;; esac shift