python 捕获 shell 脚本的输出结果的解决办法
内容摘要
这篇文章主要为大家详细介绍了python 捕获 shell 脚本的输出结果的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣python 捕获 shell 脚本的输出结果的简单示例的小
感兴趣python 捕获 shell 脚本的输出结果的简单示例的小
文章正文
这篇文章主要为大家详细介绍了python 捕获 shell 脚本的输出结果的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣python 捕获 shell 脚本的输出结果的简单示例的小伙伴,下面一起跟随php教程的小编罗X来看看吧。<br>
# php教程网 (www.idcnote.com)
import subprocess
output =Popen(["mycmd","myarg"], stdout=PIPE).communicate()[0]
import subprocess
p = subprocess.Popen(['ls','-a'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = p.communicate()
print out
# work on Unix/Linux only
import commands
print commands.getstatusoutput('wc -l file')[1]
# End 512.笔记 www.idcnote.com
注:关于python 捕获 shell 脚本的输出结果的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释