NAME
bg — run jobs in
the background
SYNOPSIS
bg |
[job_id ...] |
DESCRIPTION
If job control is enabled (see the description of set
-m ), the bg utility resumes
suspended jobs from the current environment (see Shell Execution Environment
) by running them as background jobs. If the job specified by job_id is
already a running background job, the bg utility has
no effect and will exit successfully.
Using bg to place a job into the
background causes its process ID to become "known in the current shell
execution environment", as if it had been started as an asynchronous
list; see chap2(1).
OPTIONS
None.
OPERANDS
The following operand is supported:
- job_id
- Specify the job to be resumed as a background job. If no job_id operand is given, the most recently suspended job is used. The format of job_id is described in the entry for job control job ID in the XBD specification, Glossary .
STDIN
Not used.
INPUT FILES
None.
ENVIRONMENT VARIABLES
The following environment variables affect the execution of
bg :
LANG- Provide a default value for the internationalisation variables that are
unset or null. If
LANGis unset or null, the corresponding value from the implementation-dependent default locale will be used. If any of the internationalisation variables contains an invalid setting, the utility will behave as if none of the variables had been defined. LC_ALL- If set to a non-empty string value, override the values of all the other internationalisation variables.
LC_CTYPE- Determine the locale for the interpretation of sequences of bytes of text data as characters (for example, single- as opposed to multi-byte characters in arguments).
LC_MESSAGES- Determine the locale that should be used to affect the format and contents of diagnostic messages written to standard error.
NLSPATH- Determine the location of message catalogues for the processing of LC_MESSAGES .
ASYNCHRONOUS EVENTS
Default.
STDOUT
The output of bg consists of a line in the
format:
"[%d] %s\n", <job-number>,
<command> where the fields are as follows:
- <job-number>
- A number that can be used to identify the job to the wait(1) , fg(1) and kill(1) utilities. Using these utilities, the job can be identified by prefixing the job number with "%".
- <command>
- The associated command that was given to the shell.
STDERR
Used only for diagnostic messages.
OUTPUT FILES
None.
EXTENDED DESCRIPTION
None.
EXIT STATUS
The following exit values are returned:
CONSEQUENCES OF ERRORS
If job control is disabled, the bg utility
will exit with an error and no job will be placed in the background.
APPLICATION USAGE
A job is generally suspended by typing the SUSP character
(<control>-Z on most systems); see the XBD specification,
General
Terminal Interface . At that point, bg can
put the job into the background. This is most effective when the job is
expecting no terminal input and its output has been redirected to
non-terminal files. A background job can be forced to stop when it has
terminal output by issuing the command:
stty tostop
A background job can be stopped with the command:
kill -s stop job ID
The bg utility will not work as expected
when it is operating in its own utility execution environment because that
environment will have no suspended jobs. In the following examples:
... | xargs bg (bg) each bg
operates in a different environment and will not share its parent shell's
understanding of jobs. For this reason, bg is
generally implemented as a shell regular built-in.
EXAMPLES
None.
FUTURE DIRECTIONS
None.