| From: Bill Richter (richter at math.northwestern.edu) Date: Thu Apr 17 23:08:21 EDT 2003 |
|
> nohup mzscheme -r file &
If you're going to background it and kill the TTY, be sure to take care
of stdout/stderr/stdin:
mzscheme -r file > my-log-file 2>&1 < /dev/null & # Bourne-like
Thanks, Neil. This didn't help my "halting" problem, but maybe I
should do it together with Dave's solution, which did work, like:
nohup mzscheme -r file 2>&1 < /dev/null &
C-d
| Posted on the users mailing list. |
|