Which shell command continues execution of a suspended command in the background?
The bg job-control command resumes a stopped or suspended job and runs it in the background. An ampersand (&) places a newly invoked command in the background rather than resuming an existing suspended job.
bg
&
Community Discussion