Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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
 
PREVIOUS NEXT
Tagged: #command #find #jobs #running #background
ADD COMMENT
Topic
Name
3+1 =