mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-09-01 05:45:33 +08:00
c07ae6e05c
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
13 lines
308 B
Markdown
13 lines
308 B
Markdown
# 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`
|