LFCS Exam QuestionsBrowse all questions from this exam

LFCS Exam - Question 70


Which shell command is used to continue background execution of a suspended command?

Show Answer
Correct Answer: B

The 'bg' command is used to continue the background execution of a suspended command. When a command is stopped or suspended (e.g., using Ctrl+Z), it is moved to the background. The 'bg' command allows you to resume its execution in the background, allowing you to regain control of the shell while the command continues to run.

Discussion

1 comment
Sign in to comment
StribOption: B
Jun 16, 2023

B. bg The "bg" command is used to continue the background execution of a suspended command. When a command is stopped or suspended (e.g., using Ctrl+Z), it is paused and moved to the background. The "bg" command allows you to resume its execution in the background. By issuing the "bg" command followed by the job ID or job specifier, the suspended command will continue executing in the background, allowing you to regain control of the shell.