Is it possible to see output to stdout after disown and logout?

bash, linux

Solution

ctrl-z the program
bg %  so it wont die when you logoff
screen retty $Pid
will attach the running program into screen

duplicate question of how to replace the "disown" with "screen"?

Problem

I have done this to that programe: ctrl-z disown -h %1 bg 1 then logout, Is it still possible for me to see what that programe outputs to stdout now?

Original source

Related problems