Advertisement
luisg_muniz

menu-3.ksh

Dec 15th, 2017
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.38 KB | None | 0 0
  1. #!/bin/ksh93
  2. # Ejemplo (un poco forzado) de menu con select+"puntero" a funciones
  3.  
  4. fecha() {
  5.         date +%F
  6. }
  7.  
  8. hora() {
  9.         date +%H:%M:%S
  10. }
  11.  
  12. mes() {
  13.         cal
  14. }
  15.  
  16. PS3="Elija una opción ...> "
  17. select op in fecha hora mes salir
  18. do
  19.         case "$op" in
  20.                 fecha|hora|mes) eval $op ;;
  21.                 salir) break ;;
  22.         esac
  23. done
  24.  
  25. print "Fin."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement