我试过运行这样的事情:
subprocess.Popen(['nohup', 'my_command'],
stdout=open('/dev/null', 'w'),
stderr=open('logfile.log', 'a'))
如果父脚本正常退出,则此方法有效,但是如果我终止了该脚本(Ctrl-C),我的所有子进程也将全部终止。有办法避免这种情况吗?
我关心的平台是使用Python 2.6 和 Python 2.7的OS X和Linux 。
MMMHUHU
DIEA
相关分类