mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 02:15:25 +02:00
exec: add Spanish translation (#15211)
This commit is contained in:
parent
fd025dd8aa
commit
0c0480e9bd
1 changed files with 20 additions and 0 deletions
20
pages.es/linux/exec.md
Normal file
20
pages.es/linux/exec.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# exec
|
||||
|
||||
> Ejecuta un comando sin crear un proceso hijo.
|
||||
> Más información: <https://www.gnu.org/software/bash/manual/bash.html#index-exec>.
|
||||
|
||||
- Ejecuta un comando específico:
|
||||
|
||||
`exec {{comando -con -opciones}}`
|
||||
|
||||
- Ejecuta un comando con un entorno (en su mayoría) vacío:
|
||||
|
||||
`exec -c {{comando -con -opciones}}`
|
||||
|
||||
- Ejecuta un comando como un shell de inicio de sesión:
|
||||
|
||||
`exec -l {{comando -con -opciones}}`
|
||||
|
||||
- Ejecuta un comando con un nombre diferente:
|
||||
|
||||
`exec -a {{nombre}} {{comando -con -opciones}}`
|
Loading…
Add table
Reference in a new issue