本文介绍了如何在python中获得终端输出?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我可以使用 os.system()
执行终端命令,但我想捕获此命令的输出.我该怎么做?
I can execute a terminal command using os.system()
but I want to capture the output of this command. How can I do this?
推荐答案
>>> import subprocess
>>> cmd = [ 'echo', 'arg1', 'arg2' ]
>>> output = subprocess.Popen( cmd, stdout=subprocess.PIPE ).communicate()[0]
>>> print output
arg1 arg2
>>>
在使用 subprocess.PIPE 时存在错误.对于巨大的输出使用这个:
There is a bug in using of the subprocess.PIPE. For the huge output use this:
import subprocess
import tempfile
with tempfile.TemporaryFile() as tempf:
proc = subprocess.Popen(['echo', 'a', 'b'], stdout=tempf)
proc.wait()
tempf.seek(0)
print tempf.read()
这篇关于如何在python中获得终端输出?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!