2016-06-21 07:05:30 +08:00
|
|
|
# bg
|
|
|
|
|
2025-03-09 03:23:24 +02:00
|
|
|
> Resume suspended jobs (e.g. using `<Ctrl z>`), and keeps them running in the background.
|
2025-06-14 16:02:15 +00:00
|
|
|
> See also: `jobs`, `fg` and `disown`.
|
2021-04-12 08:54:04 +02:00
|
|
|
> 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`
|
|
|
|
|
2025-06-14 16:02:15 +00:00
|
|
|
- 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
|
|
|
|
2025-06-14 16:02:15 +00:00
|
|
|
`bg %{{job_number}}`
|