python调用shell命令三种方法区别【转】

1.用os.system(cmd) 取得shell返回值2.用os.popen(cmd) 要得到命令的输出内容,只需再调用下read()或readlines()等 如a=os.popen(cmd).read()3.用 commands 模块。其实也是对popen的封装。此模块主要有如下方法

commands.getstatusoutput(cmd) 返回(status, output).commands.getoutput(cmd) 只返回输出结果commands.getstatus(file) 返回ls -ld file的执行结果字符串,调用了getoutput,不建议使用此方法.如

>>> import commands>>> commands.getstatusoutput('ls /bin/ls')(0, '/bin/ls')>>> commands.getstatusoutput('cat /bin/junk')(256, 'cat: /bin/junk: No such file or directory')>>> commands.getstatusoutput('/bin/junk')(256, 'sh: /bin/junk: not found')>>> commands.getoutput('ls /bin/ls')'/bin/ls'>>> commands.getstatus('/bin/ls')'-rwxr-xr-x  1 root        13352 Oct 14  1994 /bin/ls'

Tags:

Del.icio.us Facebook TweetThis Digg StumbleUpon
Comments:1 (One) on this item

You might be interested in this: 【转】一个开发眼中的运维 highcharts饼图将显示百分比改成具体传值数字 checkbox 向Django传多个值问题 Nginx Rtmp module 游戏服务器系统及服务器安全的一些小结


Copyright ??颓废的腰子技术Blog [python调用shell命令三种方法区别【转】], All Right Reserved. 2015. 有我们特有的记忆,亲情之忆友谊之花爱情之树以及遗憾之泪!

python调用shell命令三种方法区别【转】

相关文章:

你感兴趣的文章:

标签云: