Depends on the process and how you started it. If it is written to stdout (which is likely, given that the output usually refers to the terminal), you can redirect the output to a file using
command > logfile &
If you also want to write an error message from stderr , do
command > logfile 2> errorlogfile &
or
command > logfile 2>&1 &
to get everything in one file.
Fred foo
source share