Is it possible to continue a stopped background job in background?

I have a process running, I used ctrl-z to stop it and return to bash. If I want to continue it, there's fg command available but that brings the job back to front. Is it possible to keep it in background but running, like it would have been run with & in the first place.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 6 down vote accepted

bg

See also "JOB CONTROL" in bash's manual page.

link|improve this answer
Oh man, I'm blind sometimes, thanks! – Martin Tóth Nov 22 '10 at 13:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.