fix for escape char

This commit is contained in:
Siddhu 2017-12-08 00:18:19 +05:30
parent 458c333c2a
commit a436d55f23

View file

@ -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