python 利用pexpect进行多机远程命令执行

简介:

在安装之前,确认你的机器安装了python,easy_install.通常python是自动安装的,如果没有安装easy_install,那么wget -q http://peak.telecommunity.com/dist/ez_setup.py获取一下

python ez_setup.py

pexpect是python一个模块,可以通过:easy_install pexpect 来安装。

这里主要是用pexpect执行ssh,查看远程uptime和df -h看硬盘状况。

 

#ssh_cmd.py
#coding:utf-8

import pexpect

def ssh_cmd(ip, user, passwd, cmd):
    ssh = pexpect.spawn('ssh %s@%s "%s"' % (user, ip, cmd))
    r = ''
    try:
        i = ssh.expect(['password: ', 'continue connecting (yes/no)?'])
        if i == 0 :
            ssh.sendline(passwd)
        elif i == 1:
            ssh.sendline('yes')
    except pexpect.EOF:
        ssh.close()
    else:
        r = ssh.read()
        ssh.expect(pexpect.EOF)
        ssh.close()
    return r

hosts = '''
192.168.0.12:smallfish:1234:df -h,uptime
192.168.0.13:smallfish:1234:df -h,uptime
'''

for host in hosts.split("/n"):
    if host:
        ip, user, passwd, cmds = host.split(":")
        for cmd in cmds.split(","):
            print "-- %s run:%s --" % (ip, cmd)
            print ssh_cmd(ip, user, passwd, cmd)


1、查询30天前的日志文件并删除


[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. find /g2ihslog/xmlgen/ -mtime +30 –exec rm {} \;  

    通过文件名中包含的日期查询:



[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. #文件中包含的日期字符串  

  2. DEL_DAY=`date -I -d '-30 day'`"-00"  

  3. #日志文件夹  

  4. logdir="/g2ihslog/*/"  

  5. #遍历文件夹下的文件  

  6. for n in `ls $logdir` ; do  

  7.     #取出文件名中的日期  

  8.     file_dt=`echo $n | awk -F "." '{print $3}'`  

  9.     #若日期为30天前,则删除  

  10.     if [[ -n "$file_dt" && "$file_dt" < "$DEL_DAY" ]];then  

  11.         rm -f $n  

  12.     fi;  

  13. done  


2、读取文件,对每一行进行处理


      linux shell逐行处理文本的12种方法

 

方法1、cat $filename|while read line  

   例如:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. function while_read_line   

  2.          { cat $filename|while read line   

  3.            do   

  4.               echo "$line"   

  5.              :                        #这行什么都不做,返回值0 ,在此处对变量进行的操作不起作用,出了while循环就失效  

  6.              done  

  7.           }   

 

方法2:while read $filename from bottom  #建议采用此方法读取

   例如:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. function while_read_line_bottom   

  2.          {   

  3.            while read line   

  4.           do   

  5.             echo "$line"   

  6.                :   

  7.             done < $filename   

  8.           }   

 

方法3:while_line_line_bottom 

  例如:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. function while_line_line_bottom   

  2.           {    

  3.            while line line   #用line命令替换read   

  4.             do   

  5.               echo "$line"   

  6.                :   

  7.              done < $filename   

  8.             }   

 

方法4:cat $filename|while line=`line` 

   例如:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. function cat_while_line_line   

  2.         {   

  3.           cat $filename | while line=`line`   

  4.             do   

  5.               echo "$line"   

  6.             :   

  7.            done   

  8. }   

 

方法5:cat $filename |while line line 

   例如:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. function while_line_LINE   

  2.         {    

  3.         cat $filename |while line line   

  4.          do   

  5.            echo "$line"   

  6.           :   

  7.           done   

  8.            }   

 

方法6:while line=`line`from the bottom 

   例如:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. function while_line_line_bottom   

  2.        {   

  3.        while line=`line`   

  4.         do   

  5.          echo "$line"   

  6.        :   

  7.        done < $filename   

  8.       }   

 

方法7:cat $filename |while line=$(line) 

   例如:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. function while_line_line_cm   

  2.         {   

  3.          cat $filename |while line=$(line)   

  4.          do   

  5.           echo "$line"   

  6.          :   

  7.              done   

  8.           }   

 

方法8:while line=$(line)from the bottom 

   例如:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. function while_line_line_bottom_cm   

  2.         {   

  3.         while line=$(line)   

  4.          do   

  5.          echo "$line"   

  6.        done<$filename   

  7.         }   

 

方法9:while read line 

    例如:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. function while_read_line_fd   

  2.        {      

  3.          exec 3<&0   #将所有内容重定向到新文件描述符3来关闭文件描述符0   

  4.          exec 0<$filename  #标准输入文件描述符为0,标准输出文件描述符为1,标准错误为2.   

  5.         while read line    #3以后就可以配给普通文件。   

  6.         do   

  7.           echo "$line"   

  8.          done   

  9.          exec 0<&3   

  10.       }   


方法10:while line=`line` 

   例如:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. function while_line_line_fd   

  2.         {   

  3.          exec 3<&0   

  4.          exec 0<$filename   

  5.          while line=`line`   

  6.          do   

  7.           echo "$line"   

  8.          done   

  9.           exec 0<&3   

  10.          }   

 

方法11:while line=$(line) 

  例如:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. function while_line_line_cm_fd   

  2.       {   

  3.        exec 3<&0   

  4.        exec 0<$filename   

  5.        while line=$(line)   

  6.         do   

  7.          print "$line"   

  8.         done   

  9.        exec 0<&3   

  10.         }   

 

方法12:while line line 

   例如:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. function while_line_line_fd   

  2.       {   

  3.        exec 3<&0   

  4.        exec 0<$filename   

  5.        while line line   

  6.         do   

  7.           echo " $line"   

  8.         done   

  9.        exec 0<&3   

  10.        }  

3、查看进程ID

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. #-v 表示排除 -i表示忽略大小写  

  2. ps -ef | grep -v grep | grep -i ihs-${name} | awk '{print $2}'  











本文转自 chengxuyonghu 51CTO博客,原文链接:http://blog.51cto.com/6226001001/1550138,如需转载请自行联系原作者
目录
相关文章
|
24天前
|
安全 网络安全 文件存储
思科设备巡检命令Python脚本大集合
【10月更文挑战第18天】
62 1
思科设备巡检命令Python脚本大集合
|
27天前
|
Python
Python PDB命令介绍
【10月更文挑战第15天】 使用PDB的方式有两种,其中一种是在脚本中添加代码,不觉得这种方式比print好在哪里,所以这种方式此文不表。这里我们只学习PDB的命令行使用方式
37 4
|
1月前
|
机器学习/深度学习 缓存 PyTorch
pytorch学习一(扩展篇):miniconda下载、安装、配置环境变量。miniconda创建多版本python环境。整理常用命令(亲测ok)
这篇文章是关于如何下载、安装和配置Miniconda,以及如何使用Miniconda创建和管理Python环境的详细指南。
348 0
pytorch学习一(扩展篇):miniconda下载、安装、配置环境变量。miniconda创建多版本python环境。整理常用命令(亲测ok)
|
2月前
|
机器学习/深度学习 Shell 开发工具
Python使用管道执行git命令报错|4-7
Python使用管道执行git命令报错|4-7
|
1月前
|
机器学习/深度学习 缓存 Linux
python环境学习:pip介绍,pip 和 conda的区别和联系。哪个更好使用?pip创建虚拟环境并解释venv模块,pip的常用命令,conda的常用命令。
本文介绍了Python的包管理工具pip和环境管理器conda的区别与联系。pip主要用于安装和管理Python包,而conda不仅管理Python包,还能管理其他语言的包,并提供强大的环境管理功能。文章还讨论了pip创建虚拟环境的方法,以及pip和conda的常用命令。作者推荐使用conda安装科学计算和数据分析包,而pip则用于安装无法通过conda获取的包。
61 0
|
2月前
|
Unix Shell Linux
nohup python -u ai_miniprogram_main.py > ../iwork.out 2>&1 & 这句命令是做什么的?
nohup python -u ai_miniprogram_main.py > ../iwork.out 2>&1 & 这句命令是做什么的?
19 1
|
2月前
|
Python Windows
Python:执行py命令,提示: Can‘t find a default Python.
Python:执行py命令,提示: Can‘t find a default Python.
|
2月前
|
Shell Linux Python
python执行linux系统命令的几种方法(python3经典编程案例)
文章介绍了多种使用Python执行Linux系统命令的方法,包括使用os模块的不同函数以及subprocess模块来调用shell命令并处理其输出。
33 0
|
3月前
|
API 开发工具 网络架构
【Azure Developer】使用Python SDK去Azure Container Instance服务的Execute命令的疑问解释
【Azure Developer】使用Python SDK去Azure Container Instance服务的Execute命令的疑问解释
【Azure Developer】使用Python SDK去Azure Container Instance服务的Execute命令的疑问解释
|
3月前
|
前端开发 计算机视觉
Building wheel for opencv-python (pyproject.toml) ,安装命令增加 --verbose 参数
Building wheel for opencv-python (pyproject.toml) ,安装命令增加 --verbose 参数
184 2