mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-05 21:13:22 +02:00
328 B
328 B
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}}