A Shell Script
#!/bin/bash
#
# menu: A simple menu template
#
while true
do
clear
echo -n "
CIS 90 Command Project
1) Option 1
2) Option 2
3) Option 3
4) Option 4
5) Option 5
6) Exit
Enter Your Choice: "
read RESPONSE
case $RESPONSE in
1) echo command with option 1
;;
2) echo command with option 2
;;
3) echo command with option 3
;;
4) echo command with option 4
;;
5) echo command with option 5
;;
6) exit 0
;;
*) echo "Please enter a number between 1 and 6"
;;
esac
echo -n "Hit the Enter key to return to menu "
read dummy
done