Soup Menu ========== (t)omato (b)ean (s)quash Select a soup (q) to quit Show results. Use the command to evaluate whether the shell variable contains a reference to the bash shell and use the command to determine the result. (Note that this provides one way to verify from within a script that the script user is set up to use the bash shell.). Show results. echo -n What is your favorite vegetable? read veg_name if test $veg_name = broccoli then echo Broccoli is a healthy choice. else if [ $veg_name = carrots ] then echo Carrots are great for you. else echo Dont forget to eat your broccoli also. fi fi Edit the veg_choice script again but, this time, change the line: to use the test command. Show results. How could you set up CALNOW so that it works every time you log in using the bash shell? Show results. Make the contents of your them script resident in memory and test your function. Modify your function so that you can enter These are the folks logged in: as an argument to appear before you list who is logged into the system. What actions do you take next to use the function with your modifications? How can you set up your new function so that it can be run each time you log in using the bash script? Show results. #=============================================== Script Name: record_entry By: TRJackson #=============================================== looptrack=y while [ $looptrack = 1 ] do echo -n Type in the account number: read account echo -n Type the first and last name: ; read full_name echo -n Type the age: red age echo -n Enter another record? ; read looptrack