Which shell command is used to continue background execution of a suspended command?
Which shell command is used to continue background execution of a suspended command?
The 'bg' command is used to continue the background execution of a suspended command. When a job is suspended (usually with Ctrl+Z), it can be resumed in the background using 'bg'. This command tells the shell to continue the job in the background, freeing up the terminal for other tasks.
A is correct
& : run a program in the background to begin with bg : put the recently suspended process in the background,So the correct Answer is B
& : run a program in the background to begin with bg : put the recently suspended process in the background,So the correct Answer is B
The shell command used to continue background execution of a suspended command is: B. `bg` The `bg` command is used to put a suspended job into the background, allowing it to continue running in the background without being connected to the current terminal.