tldr/pages/common/bg.md

13 lines
353 B
Markdown
Raw Normal View History

2016-06-21 00:05:30 +01:00
# bg
2017-06-26 12:56:56 +01:00
> Resumes jobs that have been suspended (e.g. using `Ctrl + Z`), and keeps them running in the background.
2021-03-31 11:18:25 +01:00
> More information: <https://man.archlinux.org/man/bg.1p>.
2016-06-21 00:05:30 +01:00
2021-03-31 11:18:25 +01:00
- Resume the most recently suspended job and run it in the background:
2016-06-21 00:05:30 +01:00
`bg`
2017-06-26 12:56:56 +01:00
- Resume a specific job (use `jobs -l` to get its ID) and run it in the background:
2016-06-21 00:05:30 +01:00
`bg %{{job_id}}`