系统相关
首页 > 系统相关> > linux上的python中的os.system vs subprocess

linux上的python中的os.system vs subprocess

作者:互联网

我有两个python脚本.第一个脚本调用第二个脚本的表,我需要在其中执行第三方python脚本.它看起来像这样:

# the call from the first script. 
cmd = "qsub -sync y -b -cwd -V -q long  -t 1-10 -tc 5 -N 'script_two' ./script2.py"

script2thread = pexpect.spawn(cmd)

# end of script 1 

所以我在这里发送10个工作到队列.在脚本2中,我有一个基于task_id的case语句.在每一个中,我使用不同的参数对第三方脚本进行类似的调用.

...
elif(task_id == 4)
subprocess.call(./script3)

# or 

os.system(./script3 , shell=True)

这是我的问题所在.使用其中一个是否有差异/好处?我知道在Windows上使用一个而不是另一个因为支持问题而产生很大的不同但是我在Linux上并且无意在Windows上运行它.有时我使用子进程得到非常奇怪的结果,当第三个脚本一次独立运行时,它无法在网络上找到其他东西.

解决方法:

你应该使用subprocess.不是它有任何区别,它只是一个更新的模块,旨在取代os.system(看看this section的替代品).它还具有更多功能,以防您有一天需要它们.

简而言之:没有理由使用os.system(除了与旧版本的Python兼容).

标签:python,linux,qsub
来源: https://codeday.me/bug/20190716/1478838.html