nohup
nohup COMANDO [ARG]...
nohup OPCIÓN
Ejecutar COMANDO ignorando señales de desconexión.
Options
Si la entrada estándar es terminal, será reemplazada con /dev/null. Si la salida estándar es terminal, será anexada a nohup.out en su lugar, o $HOME/nohup.out, si falló abrir nohup.out. Si el error estándar es terminal, será redirigido a stdout.
Examples
Run a process that can live beyond the terminal:
nohup {{command}} {{argument1 argument2 ...}}
Launch nohup in background mode:
nohup {{command}} {{argument1 argument2 ...}} &
Run a shell script that can live beyond the terminal:
nohup {{path/to/script.sh}} &
Run a process and write the output to a specific file:
nohup {{command}} {{argument1 argument2 ...}} > {{path/to/output_file}} &
The examples are provided by the tldr-pages project under the CC BY 4.0 License.
Please note that, as uutils is a work in progress, some examples might fail.