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:
parent
7c610614cb
commit
c07ae6e05c
1 changed files with 12 additions and 0 deletions
12
pages.es/common/function.md
Normal file
12
pages.es/common/function.md
Normal 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`
|
Loading…
Add table
Reference in a new issue