QuestionQ242

Essential Commands

Which shell command continues execution of a suspended command in the background?

  • A &
  • B bg
  • C cont
  • D exec
  • E :&
Explanation

The bg job-control command resumes a stopped or suspended job and runs it in the background. An ampersand (&) places a newly invoked command in the background rather than resuming an existing suspended job.

Community Discussion

No comments yet. Be the first to start the discussion!