执行shell并打印结果

2019-06-03  本文已影响0人  strean

commands模块#可以很方便的取得命令的输出(包括标准和错误输出)和执行状态位

import commands
a,b = commands.getstatusoutput('ls')
a是退出状态
b是输出的结果。
>>> import commands
#执行shell
>>> a,b = commands.getstatusoutput('ls')
>>> print a
0
#打印结果
>>> print b
anaconda-ks.cfg
install.log
install.log.syslog
上一篇下一篇

猜你喜欢

热点阅读