我正在使用该subprocess
模块并check_output()
在我的 Python 脚本中创建一个虚拟 shell,它适用于返回零退出状态的命令,但是对于那些不返回异常而不打印将显示在普通外壳上的输出。
例如,我希望某些东西可以像这样工作:
>>> shell('cat non-existing-file')
cat: non-existing-file: No such file or directory
但相反,会发生这种情况:
>>> shell('cat non-existing-file')
CalledProcessError: Command 'cat non-existing-file' returned non-zero exit status 1 (file "/usr/lib/python2.7/subprocess.py", line 544, in check_output)
即使我可以使用try
and删除 Python 异常消息except
,我仍然希望cat: non-existing-file: No such file or directory
向用户显示。
我该怎么做呢?
shell()
:
def shell(command):
output = subprocess.check_output(command, shell=True)
finished = output.split('\n')
for line in finished:
print line
return