regex
This commit is contained in:
parent
9df82d6cc9
commit
8a2fd2a976
@ -64,11 +64,9 @@ menu(){
|
|||||||
if [[ $current_selection == 1 ]]; then
|
if [[ $current_selection == 1 ]]; then
|
||||||
echo -e "\nHow many applications do you want updating at the same time?"
|
echo -e "\nHow many applications do you want updating at the same time?"
|
||||||
read -rt 600 -p "Please type an integer greater than 0: " up_async
|
read -rt 600 -p "Please type an integer greater than 0: " up_async
|
||||||
update_selection+=("-U" "$up_async")
|
|
||||||
elif [[ $current_selection == 2 ]]; then
|
elif [[ $current_selection == 2 ]]; then
|
||||||
echo -e "\nHow many applications do you want updating at the same time?"
|
echo -e "\nHow many applications do you want updating at the same time?"
|
||||||
read -rt 600 -p "Please type an integer greater than 0: " up_async
|
read -rt 600 -p "Please type an integer greater than 0: " up_async
|
||||||
update_selection+=("-u" "$up_async")
|
|
||||||
elif [[ $current_selection == 0 ]]; then
|
elif [[ $current_selection == 0 ]]; then
|
||||||
echo "Exiting.."
|
echo "Exiting.."
|
||||||
exit
|
exit
|
||||||
@ -76,6 +74,15 @@ menu(){
|
|||||||
echo "$current_selection was not an option, try again"
|
echo "$current_selection was not an option, try again"
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
if [[ $up_async == 0 ]]; then
|
||||||
|
echo "0 was not an option.. exiting"
|
||||||
|
exit
|
||||||
|
elif ! [[ $up_async =~ ^[0-9]+$ ]]; then
|
||||||
|
echo "Error: $up_async is invalid, it needs to be an integer"
|
||||||
|
exit
|
||||||
|
else
|
||||||
|
update_selection+=("-u" "$up_async")
|
||||||
|
fi
|
||||||
while true
|
while true
|
||||||
do
|
do
|
||||||
clear -x
|
clear -x
|
||||||
|
Loading…
Reference in New Issue
Block a user