Exam LFCS All QuestionsBrowse all questions from this exam
Question 70

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

    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
StribOption: B

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.