1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-29 12:15:29 +02:00
tldr/pages/common/bg.md

14 lines
372 B
Markdown
Raw Normal View History

2016-06-21 07:05:30 +08:00
# bg
> Resume suspended jobs (e.g. using `<Ctrl z>`), and keeps them running in the background.
> See also: `jobs`, `fg` and `disown`.
> More information: <https://manned.org/bg>.
2016-06-21 07:05:30 +08:00
2021-03-31 12:18:25 +02:00
- Resume the most recently suspended job and run it in the background:
2016-06-21 07:05:30 +08:00
`bg`
- Resume a specific job and run it in the background (run `jobs` to find the job number):
2016-06-21 07:05:30 +08:00
`bg %{{job_number}}`