mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-13 08:27:26 +00:00
e750f1a3c2
darcs-hash:20070324191646-ac50b-0892de7e96348caf198830af2b2ad46b84f9f13e.gz
16 lines
649 B
Text
16 lines
649 B
Text
\section bg bg - send to background
|
|
|
|
\subsection bg-synopsis Synopsis
|
|
<tt>bg [PID...]</tt>
|
|
|
|
\subsection bg-description Description
|
|
Sends the specified jobs to the background. A background job is
|
|
executed simultaneously with fish, and does not have access to the
|
|
keyboard. If no job is specified, the last job to be used is put in the background. If PID is specified, the jobs with the specified group ids are put in the background.
|
|
|
|
The PID of the desired process is usually found by using <a href="index.html#expand-process">process expansion</a>.
|
|
|
|
\subsection bg-example Example
|
|
|
|
<tt>bg \%0</tt> will put the job with job id 0 in the background.
|
|
|