1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:22:09 +02:00

function: add Spanish translation (#15534)

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
Darío Hereñú 2025-02-06 14:14:37 -03:00 committed by GitHub
parent 7c610614cb
commit c07ae6e05c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,12 @@
# function
> Define una función.
> Más información: <https://www.gnu.org/software/bash/manual/bash.html#Shell-Functions>.
- Define una función con el nombre especificado:
`function {{func_name}} { {{echo "Contenido de la función aquí"}}; }`
- Ejecuta una función llamada `func_name`:
`func_name`