Re: nohup and os.system

2009-03-11 Thread Cameron Simpson
On 12Mar2009 16:37, I wrote: | With nohup, the outputs of cmd1 and cmd2 are going to the nohup.out | file, and thus are set to block buffering. Unless cmd1 and cmd2 have | special command line switches to get them to line buffer (or no-buffer) | your only recourse is to attach them to terminals, th

Re: nohup and os.system

2009-03-11 Thread Cameron Simpson
On 11Mar2009 21:05, Gideon wrote: | I've got a python script, batch.py that, amongst other things, | executes commands: | | os.system('cmd1') | os.system('cmd2') | | now, these programs output certain information at the command line, | and if i execute | | ./batch.py | | it shows up as I would