Answers for "command to find jobs running in the background"

0

command to find jobs running in the background

jobs
# To move a running job to the background
bg

# To bring a running job to the foreground
fg <job nubmber>

# use the job number of a particular job to select job 
# to bring to the foreground
fg 2

# to suspend a running command on the terminal, press ctrl z
Posted by: Guest on April-14-2022

Code answers related to "command to find jobs running in the background"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language