You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#The while loop is perfect for a situation where you need to execute a set of commands while some condition is true. Sometimes you need to execute a set of commands until a condition is true.
#until command
#do
# Statement(s) to be executed until command is true
#The select loop provides an easy way to create a numbered menu from which users can select options. It is useful when you need to ask the user to choose one or more items from a list of choices.
# Syntax
#select var in word1 word2 ... wordN
#do
# Statement(s) to be executed for every word.
#done
select DRINK in tea cofee water juice appe all none