bg - Unix, Linux Command



NAME

bg - Sends job to background.

SYNOPSIS

bg [PID...]

DESCRIPTION

bg 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. The PID of the desired process is usually found by using process expansion.

OPTIONS

TagDescription
[PID]If PID is specified, the jobs with the specified group ids are put in the background.

EXAMPLES

To put the job with job id 0 in the background.

bg %0
Print
Advertisements