mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 14:42:19 +02:00

* df, exec, exit, export: fix more info link * df: update outdated Farsi translation --------- Co-authored-by: Mohammad Reza Soleimani <87926618+MrMw3@users.noreply.github.com> Co-authored-by: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com>
20 lines
595 B
Markdown
20 lines
595 B
Markdown
# exec
|
|
|
|
> Sostituisci il processo corrente con un altro.
|
|
> Maggiori informazioni: <https://manned.org/exec.1posix>.
|
|
|
|
- Sostituisci con il comando specificato utilizzando le variabili di ambiente correnti:
|
|
|
|
`exec {{comando -con -flag}}`
|
|
|
|
- Sostituisci con il comando specificato utilizzando un ambiente vuoto:
|
|
|
|
`exec -c {{comando -con -flag}}`
|
|
|
|
- Sostituisci con il comando specificato ed esegui il login con la shell predefinita:
|
|
|
|
`exec -l {{comando -con -flag}}`
|
|
|
|
- Sostituisci con il comando specificato e cambia il nome del processo:
|
|
|
|
`exec -a {{nuovo_nome_processo}} {{comando -con -flag}}`
|