Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hockeyfrissa/d0df59c141b2edd2d0d655aa7e4094e9 to your computer and use it in GitHub Desktop.
Save hockeyfrissa/d0df59c141b2edd2d0d655aa7e4094e9 to your computer and use it in GitHub Desktop.
bash menu
#!/bin/bash
msg () {
figlet -f term "Your wish is my command" | lolcat
}
menu () {
echo "1. Cointop"
echo "2. Reddit"
echo "3. Exit"
read -n 1 -s option
case "$option" in
1)
cointop;msg;menu
;;
2)
rtv;msg;menu
;;
*)
echo "Bye!"
;;
esac
}
figlet -t -f Graffiti "Greetings my master" | lolcat
msg
menu
#https://github.com/michael-lazar/rtv
#https://github.com/miguelmota/cointop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment