无法使用python存储子进程的终端输出

时间:2016-02-02 23:53:49

标签: python terminal subprocess

我的代码在终端中有两个可能的结果:Can't connect RFCOMM socket: Permission deniedCan't connect RFCOMM socket: Host is down。我需要将结果作为字符串存储在变量中,但我尝试过的所有内容都失败了。这是我认为会做的代码:

from subprocess import check_output

out = check_output(["sudo", "rfcomm", "connect", "0", "AA:BB:CC:DD:EE:FF", "10"])
print "output: %s" % out

相反,我什么都没得到:

user:~/home $./foo.py
Can't connect RFCOMM socket: Permission denied
output:

另一次尝试:

proc = subprocess.Popen(["sudo rfcom connect 0 AA:BB:CC:DD:EE:FF 10"], stdout=subprocess.PIPE, shell=True)
(out, err) = proc.communicate()
print "output: %s" % out, err

这至少在我打印时给了我一些东西。不幸的是它没有"没有"告诉我没有错误而不是实际输出:

user:~/home $./foo.py
Can't connect RFCOMM socket: Permission denied
output:  None

我已经尝过this this this this,可能还有其他几个。我确定我在某个地方错过了一些关键知识。感谢您的任何指示!

1 个答案:

答案 0 :(得分:2)

rfcomm显然是将其输出写入标准错误,但您只是捕获标准输出。要同时捕获这两者,请在stderr=subprocess.STDOUT

的调用中加入check_output
subprocess.check_output(["sudo", "rfcomm", "connect", "0", "AA:BB:CC:DD:EE:FF", "10"],
                        stderr=subprocess.STDOUT)