nohup: use variable number of arguments in token (#9464)

This commit is contained in:
Irina
2022-11-17 03:41:30 +03:00
committed by GitHub
parent e71577caf9
commit 85c7973277
2 changed files with 6 additions and 6 deletions

View File

@@ -5,11 +5,11 @@
- Run a process that can live beyond the terminal:
`nohup {{command}} {{command_arguments}}`
`nohup {{command}} {{argument1 argument2 ...}}`
- Launch `nohup` in background mode:
`nohup {{command}} {{command_arguments}} &`
`nohup {{command}} {{argument1 argument2 ...}} &`
- Run a shell script that can live beyond the terminal:
@@ -17,4 +17,4 @@
- Run a process and write the output to a specific file:
`nohup {{command}} {{command_arguments}} > {{path/to/output_file}} &`
`nohup {{command}} {{argument1 argument2 ...}} > {{path/to/output_file}} &`