binbash

Moodul

Apr 16th, 2011
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.20 KB | None | 0 0
  1.  
  2. #!/bin/bash
  3.  
  4. principal() {
  5. echo "Opções"
  6. echo "1. frase"
  7. echo "q. Sair"
  8.  
  9. read opcao
  10.  
  11. case $opcao in
  12. 1) frase ;;
  13. q) clear ; exit;;
  14. esac
  15. }
  16.  
  17. frase() {
  18. echo "Frase teste!"
  19. principal
  20. }
Advertisement
Add Comment
Please, Sign In to add comment