I was given the the Task to create a menu in Linux but it appears it's not coming out great. When I select something I want to be able to perform that task then go back to the main menu when I finish.
#!/bin/bash
PS3='What do you want to do day: '
options=("Create Group" "Delete Group" "Create User 3" "Delete User" "Quit")
select opt in "${options[@]}"
do
case $opt in
"Create Group")
echo "You chose Create Group 1"
;;
"Delete Group")
echo "You chose to Delete Group"
;;
"Create User")
echo "You chose to Create User"
;;
"Delete User")
echo "You choose to Delete User"
;;
"Quit")
break
;;
*) echo invalid option;;
esac
done