Possible Duplicate:
Linux process to background - relogin - how to bring process back to foreground?

Okay, kind of a weird question but let's say I'm running a long-running batch script in a terminal window and I close that terminal window.

Is it possible, in any way, to ssh back into that server and run a command that pops you back into that process, so you can see it running again?

This is on linux (Redhat).

Thanks

link|improve this question
Wasn't a background process but hopefully one of the other answers applies. – Jordan Reiter May 11 '10 at 2:40
feedback

closed as exact duplicate by quack quixote May 11 '10 at 2:06

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

you'd want to run the process in screen, most likely, then detach the screen session.

I also think you can switch a process to the background with an && at the end of the line invoking it, and using fg n where n is the process number to bring it back to the front, though i haven't tried this yet.

link|improve this answer
feedback

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