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

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.

1 Answer

bg

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

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like