> nohup will only redirect output to nohup.out if you haven't redirected > it yourself, and then I believe only if you actually print something > to stdout.
I'm not redirecting stdout so it should but it doesn't. I can't get nohup to do much of anything. According to the short manpage, I would think "nohup ls" should create a file nohup.output with a directory listing in it, it doesn't, it goes to the console. Strange. > Maybe try running python with "python -u", which should turn off > buffering. Good idea. I modified AppServer to read: #!/bin/sh /usr/bin/env python -u Launch.py ThreadedAppServer $* But it didn't fix the problem. Maybe Launch.py is starting a new python interpreter that also needs the -u switch? I can't tell. Jeff _______________________________________________ Webware-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-devel
