Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. function gestion_de_usuarios {
  2. #CODIGO
  3. }
  4.  
  5. function gestion_de_base_de_datos {
  6. #CODIGO
  7. }
  8.  
  9. function ajustes {
  10. #CODIGO
  11. }
  12.  
  13. echo " 1 - Gestion de usuarios"
  14. echo " 2 - Gestion de base de datos"
  15. echo " 3 - Ajustes"
  16.  
  17. read -p opcion
  18. if [ "$opcion" == "1" ]; then
  19. gestion_de_usuarios
  20. fi
  21. if [ "$opcion" == "2" ]; then
  22. gestion_de_base_de_datos
  23. fi
  24. if [ "$opcion" == "3" ]; then
  25. ajustes
  26. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement