Continue a "ctrl-z"-ed job in background

29

13

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.

Martin Tóth

Posted 2010-11-22T13:34:09.897

Reputation: 680

Answers

40

bg

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

user1686

Posted 2010-11-22T13:34:09.897

Reputation: 283 655