Advertisement
sergio_educacionit

funcion_basica.sh

Jul 20th, 2024
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.45 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3.  
  4. # variable posicional pasada al script.
  5. argumento=$1
  6.  
  7. func_help () {
  8.  
  9.     echo Esto es una ayuda
  10.     exit 0
  11. }
  12.  
  13. # Definición de la función con argumento
  14.  
  15. saludar() {
  16.     # variable posicional pasada a la funcion.
  17.     nombre=$1
  18.     echo "Hola, $nombre!"
  19. }
  20.  
  21.  
  22. if [ ${argumento:-null} = "-h" ]; then
  23.  
  24.     func_help
  25. fi
  26.  
  27. echo "
  28. instrcuciones del programa...
  29. "
  30.  
  31.  
  32. # Llamada a la función con un argumento
  33. saludar $argumento
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement