这里介绍一下python执行shell命令的四种方法:
- os模块中的os.system()这个函数来执行shell命令
os.system('ls')
注,这个方法得不到shell命令的输出。
- popen()#这个方法能得到命令执行后的结果是一个字符串,要自行处理才能得到想要的信息。
import os
str = os.popen("ls").read()
a = str.split("\n")
for b in a:
print b
这样得到的结果与第一个方法是一样的。
- commands模块#可以很方便的取得命令的输出(包括标准和错误输出)和执行状态位
import commands
a,b = commands.getstatusoutput('ls')
commands.getstatusoutput(cmd)返回(status,output)
commands.getoutput(cmd)只返回输出结果
commands.getstatus(file)返回ls -ld file 的执行结果字符串,调用了getoutput,不建议使用这个方法。
网友评论