Bash script while loop case statement example

How to create "Menu Lists" use Bash script while loop case statement. I'm use while loop with case statement create "Menu Lists". Bash script for fun! The display color for echo command Red color RED='\033[0;31m' Blue color BLUE='\033[0;34m' No color NC='\033[0m' Read from standard input and write to standard output and files tee -a /tmp/log__$DATE To run bash script [huupv@huupv ~]$ ./menu_list The display as below: Menu Lists 1) My blog 2) Your name 3) How old are you? 4) Your Hobbies 5) Quit >> My full bash script "bash script while loop case statement" example #!/bin/bash # author: HuuPV RED='\033[0;31m' BLUE='\033[0;34m' NC='\033[0m' #No color DATE=$(date +%Y%m%d) while true do echo "" echo -e "$BLUE Menu Lists $NC" echo -e "" echo -e "$BLUE 1) My blog $NC" echo -e "$BLUE 2)