博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python之commands模块
阅读量:6495 次
发布时间:2019-06-24

本文共 1193 字,大约阅读时间需要 3 分钟。

要获得shell命令的输出只需要`cmd`命令就可以了,

需要得到命令执行的状态则需要判断$?的值, 在Python中有一个模块commands也很容易做到以上的效果.

看一下三个函数:
1). commands.getstatusoutput(cmd)
用os.popen()执行命令cmd, 然后返回两个元素的元组(status, result),其中 status为int类型,result为string类型。cmd执行的方式是{ cmd ; } 2>&1, 这样返回结果里面就会包含标准输出和标准错误.

2). commands.getoutput(cmd)
只返回执行的结果, 忽略返回值.

3). commands.getstatus(file) #现已被弃用
返回ls -ld file执行的结果.

看一下这些函数使用的例子:

>>> 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')    #该函数已被python丢弃,不建议使用,它返回 ls -ld file 的结果(String)(返回结果太奇怪了,难怪被丢弃)

'-rwxr-xr-x 1 root 13352 Oct 14 1994 /bin/ls'

 

1 #!/usr/bin/python 2 #coding:utf-8 3 import os,sys,commands 4  5 def openfile(): 6     grains = {} 7     _open_file=65533 8     try: 9         getulimit=commands.getstatusoutput('source /etc/profile;ulimit -n')10     except Exception,e:11         pass12     if getulimit[0]==0:13        _open_file=int(getulimit[1])14     grains['max_open_file'] = _open_file15     return grains

 

转载地址:http://ovcyo.baihongyu.com/

你可能感兴趣的文章
org.springframework.data.redis 一次连接获取特定key所有k-v(pipeline)
查看>>
[译稿]同步复制提议 2010-09
查看>>
账户密码策略修改
查看>>
outlook2010 打开总是提示“正在加载配置文件”
查看>>
如何写一篇好的技术博客
查看>>
Netty - ByteBuf
查看>>
Netty - ByteBuf索引管理
查看>>
Spring Boot 2 快速教程:WebFlux 快速入门(二)
查看>>
【json的使用】
查看>>
腾讯布局移动应用商店 总下载量累计达40亿次
查看>>
Akka的Actor编程
查看>>
apache用户认证
查看>>
zabbix自动发现端口监控py脚本
查看>>
office2003/2007/2010版本降低宏安全设置方法
查看>>
Linux下模拟RAID5实现磁盘损坏,数据自动切换到备份磁盘上
查看>>
Linux LVM逻辑卷配置过程详解(创建,增加,减少,删除,卸载)
查看>>
MacBook如何用Parallels Desktop安装windows7/8
查看>>
struts2上传图片的全过程
查看>>
Java String.substring内存泄露?
查看>>
【安全运维】 linux 系统账户,网络,简易安全加固方案(第一部分),经测试可行...
查看>>