使用Python的pexpet与bash进行简单交互

本例子使用pexpet模块与bash进行简单交互,但要求输入密码时,输入设置好的密码。

import pexpect

PROMPT = "[$#]" # 正则匹配$或#

# get shell bash
def getBash():
    child = pexpect.spwn("/bin/bash")
    child.expect(PROMPT) # 等待用户输入
    return child

child = getBash()
# set log file.
log = file('./demo.log', 'w')
child.logfile = log

child.sendline("su") # 获取管理员权限
# when bash need password
child.expect("password") # 拦截到需要输入密码
# enter you password
child.sendline('yourPassword')

child.expect(PROMPT) # 等待用户输入
child.send("your command") # 输入你的命令
......

output = child.read() # 读取bash中的输出
print(output)
child.close() # 关闭

你可能感兴趣的:(使用Python的pexpet与bash进行简单交互)