Hi all. I have a simple question. If I start a process running in the background... say:

Code:
$ nohup ./MyProgram &
If I would like to bring it to the foreground, how is best to do that? I know of the fg command but as far as I'm aware this only works with CTRL+Z.

I know that I can use screen, but sometimes I don't always think of that when I start a program in the background.

Cheers guys et girls.