python3 pexpect模块

Posted fengzi7314

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 pexpect模块相关的知识,希望对你有一定的参考价值。

pexpect

import pexpect
ip="127.0.0.1"
name="root"
pwd="root"
#发送命令执行交互  
child=pexpect.spawn(ssh  %[email protected]%s % ("root",ip)  )
child.expect (password:)
child.sendline(pwd)
child.expect($)
child.sendline(df -h)
#发送命令  
child.sendline("exit")
child.interact()
#关闭pexpect  
child.close()

 

以上是关于python3 pexpect模块的主要内容,如果未能解决你的问题,请参考以下文章

Python模块之pexpect

Python模块--Pexpect

python 终端模拟模块 pexpect

通python的pexpect模块获取集群信息

Python 安装pexpect模块

pexpect模块获取root密码