18

我正在使用该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)

即使我可以使用tryand删除 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
4

1 回答 1

18

大概是这样的?

def shell(command):
    try:
        output = subprocess.check_output(command, shell=True, stderr=subprocess.STDOUT)
    except Exception, e:
        output = str(e.output)
    finished = output.split('\n')
    for line in finished:
        print line
    return
于 2012-08-18T04:32:52.207 回答