当前位置: 移动技术网 > IT编程>脚本编程>Python > python 捕获shell脚本的输出结果实例

python 捕获shell脚本的输出结果实例

2017年12月12日  | 移动技术网IT编程  | 我要评论

玩中年女人,大炮哥,狼外公王铁民

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]

以上就是小编为大家带来的python 捕获shell脚本的输出结果实例全部内容了,希望大家多多支持移动技术网~

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网