Move foreground terminal jobs to run in the background
bg [job_spec ...]
job_spec (optional): Specifies the job identifier to be moved to the background for execution, which can be one or more.
Returns successful unless job control is not enabled or an error occurs.
#Run the sleep command and press ctrl+z.
sleep 60
^Z
[1]+ Stopped sleep 60
# Use the bg command to run the job in the background.
bg %1
# returned messages:
[1]+sleep 60&