Write the following script files.
Write a script file that shows the following menu and calls appropriate commands according to the user selection.
My Super Duper menu
0: Exit
1: List Current Directory Files
2: Show Who Is Logged In
# menu program
tput clear
echo "0: exit"
echo "1: List Current Directory Files
echo "2: Show Who Is Logged In
echo "Selection: \c"
read selection
# checking the selection
case $selection in
0) exit ;;
1) ls l ;;
2) who ;;
*) echo "sorry, wrong function"
esac
You might also like to view...
In the DoublyLinkedList, the retrieve and remove functions are O( 1 ) functions because:
A. they always work with the first element of the list B. they always work with the last element of the list C. if the element is not found on one link, it will be found on the other D. a hash table is used to locate the element (under the assumption of uniform hashing)
What exponent (?) is needed to represent

A 3-D cell ____________________ specifies not only the rows and columns of a cell range, but also the range of worksheet names that the cells appear on.
Fill in the blank(s) with the appropriate word(s).
How many pins are used in a serial port?
A. 15 B. 9 C. 6 D. 25