2025-03-14 21:59:59 -06:00
|
|
|
# bg
|
|
|
|
|
|
2025-03-19 19:23:44 -06:00
|
|
|
> Resume suspended jobs (e.g. using `<Ctrl z>`), and keeps them running in the background.
|
2025-07-24 22:27:13 -06:00
|
|
|
> See also: `jobs`, `fg` and `disown`.
|
2025-03-14 21:59:59 -06:00
|
|
|
> More information: <https://manned.org/bg>.
|
|
|
|
|
|
|
|
|
|
- Resume the most recently suspended job and run it in the background:
|
|
|
|
|
|
|
|
|
|
`bg`
|
|
|
|
|
|
2025-07-24 22:27:13 -06:00
|
|
|
- Resume a specific job and run it in the background (run `jobs` to find the job number):
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2025-07-24 22:27:13 -06:00
|
|
|
`bg %{{job_number}}`
|