1
0
Fork 0
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:
Igor Támara 2024-12-31 17:29:33 -05:00 committed by GitHub
parent fd025dd8aa
commit 0c0480e9bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

20
pages.es/linux/exec.md Normal file
View 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}}`