Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- principal() {
- echo "Opções"
- echo "1. frase"
- echo "q. Sair"
- read opcao
- case $opcao in
- 1) frase ;;
- q) clear ; exit;;
- esac
- }
- frase() {
- echo "Frase teste!"
- principal
- }
Advertisement
Add Comment
Please, Sign In to add comment