Problem Statement
How can you list and manage background jobs in a shell session?
Explanation
Use the jobs command to list all background or stopped processes in the current shell.
Bring one back to the foreground using fg %job_number or resume it in the background using bg %job_number.
Code Solution
SolutionRead Only
jobs fg %1
Practice Sets
This question appears in the following practice sets: