如何从 python 代码调用 shell 脚本?
子流程模块将会帮助您。
明显微不足道的例子:
>>> import subprocess >>> subprocess.call(['sh', './test.sh']) # Thanks @Jim Dennis for suggesting the [] 0 >>>
其中,test.sh是一个简单的 shell 脚本,并且0是其本次运行的返回值。
test.sh
0