Created
May 10, 2021 10:47
-
-
Save hockeyfrissa/d0df59c141b2edd2d0d655aa7e4094e9 to your computer and use it in GitHub Desktop.
bash menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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