I want to use nohup and redirect stdout to a file but I do not need a archive I just want to be able to interactively view the current stdout. I am thinking I can redirect the stdout to a file to for it to be flushed after each output
??? nohup ruby myapp.rb > output.log &
interactly view the output tail -F ./output.log