Help cleanup
Large list of changes, including formatting and typos for most commands.
More substantive changes have been made to alias, bind, block, break,
builtin, case, cd, commandline, count, else, emit, fish_config, funced,
function, functions, history, math, mimedb, nextd, not, popd, prevd,
pushd, pwd, random, read, set, set_color, switch, test, trap, type,
ulimit, umask, and while.
2013-05-12 07:56:01 +00:00
\section bg bg - send jobs to background
2005-09-20 13:31:55 +00:00
\subsection bg-synopsis Synopsis
2014-08-01 12:25:41 +00:00
\fish{synopsis}
2014-08-01 02:37:32 +00:00
bg [PID...]
\endfish
2005-09-20 13:31:55 +00:00
\subsection bg-description Description
Help cleanup
Large list of changes, including formatting and typos for most commands.
More substantive changes have been made to alias, bind, block, break,
builtin, case, cd, commandline, count, else, emit, fish_config, funced,
function, functions, history, math, mimedb, nextd, not, popd, prevd,
pushd, pwd, random, read, set, set_color, switch, test, trap, type,
ulimit, umask, and while.
2013-05-12 07:56:01 +00:00
2014-08-19 12:41:23 +00:00
`bg` sends <a href="index.html#syntax-job-control">jobs</a> to the background, resuming them if they are stopped. 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 process group IDs are put in the background.
2005-09-20 13:31:55 +00:00
2007-03-24 19:16:46 +00:00
The PID of the desired process is usually found by using <a href="index.html#expand-process">process expansion</a>.
2005-09-20 13:31:55 +00:00
2014-08-19 12:41:23 +00:00
2005-09-20 13:31:55 +00:00
\subsection bg-example Example
2014-08-01 02:37:32 +00:00
`bg %1` will put the job with job ID 1 in the background.