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

pull/1/head
Irina 2022-11-17 03:41:30 +03:00 committed by GitHub
parent e71577caf9
commit 85c7973277
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -5,11 +5,11 @@
- Запустить процесс, который может выполняться в отвязке от терминала:
`nohup {{команда}} {{аргументы_команды}}`
`nohup {{команда}} {{аргумент1 аргумент2 ...}}`
- Запустить `nohup` в фоновом режиме:
`nohup {{команда}} {{аргументы_команды}} &`
`nohup {{команда}} {{аргумент1 аргумент2 ...}} &`
- Запустить скрипт оболочки, который может выполняться в отвязке от терминала:
@ -17,4 +17,4 @@
- Запустить процесс и перенаправить его вывод в указанный файл:
`nohup {{команда}} {{аргументы_команды}} > {{путь/до/выходногоайла}} &`
`nohup {{команда}} {{аргумент1 аргумент2 ...}} > {{путь/до/выходногоайла}} &`

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}} &`