python执行shell命令的方法
python执行shell命令的方法
os模块
os.system
方式:
import os os.system('top') os.system('cat /proc/cpuinfo')
说明
这个调用相当直接,且是同步进行的,程序需要阻塞并等待返回。返回值是依赖于系统的,直接返回系统的调用返回值,所以windows和linux是不一样的。
强调的一点是,不支持参数,不支持管道
os.open
方式:
import os output = os.popen('df') print output.read() #如果命令自身无报错,则返回正确的值
说明
popen方法通过p.read()获取终端输出,而且popen需要关闭close().当执行成功时,close()不返回任何值,失败时,close()返回系统返回值..
可见它获取返回值的方式和os.system不同
强调的一点是,不支持参数,不支持管道
commands模块
使用commands模块的getoutput方法,这种方法同popend的区别在于popen返回的是一个文件句柄,而本方法将外部程序的输出结果当作字符串返回,很多情况下用起来要更方便些。
主要方法:
- commands.getstatusoutput(cmd) 返回(status, output)
- commands.getoutput(cmd) 只返回输出结果
- commands.getstatus(file) 返回ls -ld file的执行结果字符串,调用了getoutput,不建议使用此方法
a = commands.getoutput('ps -ef ') b = commands.getstatusoutput('vmstat')
subprocess模块
说明
使用subprocess模块能够创建新的进程。能够与新建进程的输入/输出/错误管道连通。
并能够获得新建进程运行的返回状态。
使用subprocess模块的目的是替代os.system()、os.popen()、commands.等旧的函数或模块。
- subprocess.call(["some_command","some_argument","another_argument_or_path")
from subprocess import call call(['ls','-l','/boot','/sys']) # call('ls -a /',shell=True)
- subprocess.Popen(command,shell=True)
参考博客
相关推荐
以梦为马不负韶华 2020-10-20
tianhuak 2020-11-24
huha 2020-10-16
lianshaohua 2020-09-23
laisean 2020-11-11
zhangjie 2020-11-11
大牛牛 2020-10-30
firefaith 2020-10-30
liguojia 2020-10-20
wangzhaotongalex 2020-10-20
CARBON 2020-10-20
彼岸随笔 2020-10-20
lianshaohua 2020-10-20
yutou0 2020-10-17
JohnYork 2020-10-16
xiaonamylove 2020-10-16
Julyth 2020-10-16
applecarelte 2020-10-16
ourtimes 2020-10-16