mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
19 lines
426 B
Plaintext
19 lines
426 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# fg
|
|
|
|
> Run jobs in foreground.
|
|
> See also: `jobs`, `bg`, `disown`, `%`.
|
|
> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-fg>.
|
|
|
|
- Bring most recently suspended or running background job to foreground:
|
|
|
|
`fg`
|
|
|
|
- Bring a specific job to foreground (run `jobs` to find the job number):
|
|
|
|
`fg %{{job_number}}`
|