zoukankan      html  css  js  c++  java
  • commands模块【转】

    https://www.cnblogs.com/wjoyxt/p/5087951.html

    要获得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'

    #!/usr/bin/python
    #coding:utf-8
    import os,sys,commands
    
    def openfile():
        grains = {}
        _open_file=65533
        try:
            getulimit=commands.getstatusoutput('source /etc/profile;ulimit -n')
        except Exception,e:
            pass
        if getulimit[0]==0:
           _open_file=int(getulimit[1])
        grains['max_open_file'] = _open_file
        return grains
  • 相关阅读:
    利用Response.Buffer做类似异步效果
    web集群时session同步的3种方法
    LVS之DR跨网段实战及高可用性
    LVS之DR模式实战及高可用性
    LVS-DR实现web调度模式
    LVS之-LAMP搭建wordpress
    LVS-NAT搭建HTTP及HTTPS
    实现NFS共享wordpress
    LAMP一键安装
    在centos6上实现编译安装lamp和wordpress,并编译xcache
  • 原文地址:https://www.cnblogs.com/wangbaihan/p/9262178.html
Copyright © 2011-2022 走看看