This commit is contained in:
array-in-a-matrix 2022-09-26 18:01:15 -04:00
parent 56fa33af33
commit 3bb69b067b
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ ARG_A=$(whiptail --inputbox "Please enter the value for \"a\":" 10 50 --title "Q
exitstatus=$?
if [ $exitstatus != 0 ]; then
echo "User canceled input."
echo "User cancelled input."
exit
fi
@ -12,7 +12,7 @@ ARG_B=$(whiptail --inputbox "Please enter the value for \"b\":" 10 50 --title "Q
exitstatus=$?
if [ $exitstatus != 0 ]; then
echo "User canceled input."
echo "User cancelled input."
exit
fi
@ -20,7 +20,7 @@ ARG_C=$(whiptail --inputbox "Please enter the value for \"c\":" 10 50 --title "Q
exitstatus=$?
if [ $exitstatus != 0 ]; then
echo "User canceled input."
echo "User cancelled input."
exit
fi