mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-28 12:13:55 +08:00
02d82dcf85
Adds synopses for those commands missing them. Moves all synopsis sections to code blocks. This improves the appearance, although highlighting as fish code may not be the ideal appearance.
23 lines
530 B
ReStructuredText
23 lines
530 B
ReStructuredText
.. _cmd-fg:
|
|
|
|
fg - bring job to foreground
|
|
============================
|
|
|
|
Synopsis
|
|
--------
|
|
|
|
::
|
|
|
|
fg [PID]
|
|
|
|
Description
|
|
-----------
|
|
|
|
``fg`` brings the specified `job <index.html#syntax-job-control>`__ to the foreground, resuming it if it is stopped. While a foreground job is executed, fish is suspended. If no job is specified, the last job to be used is put in the foreground. If PID is specified, the job with the specified group ID is put in the foreground.
|
|
|
|
|
|
Example
|
|
-------
|
|
|
|
``fg`` will put the last job in the foreground.
|