Linux   发布时间:2022-03-31  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了linux expect详解大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

expect是一个自动化交互套件,主要应用于执行命令和程序时,系统以交互形式要求输入指定字符串,实现交互通信。 expect自动交互流程: spawn启动指定进程---expect获取指定关键字---send向指定程序发送指定字符---执行完成退出. expect常用命令总结: spawn 交互程序开始后面跟命令或者指定程序 expect 获

expect是一个自动化交互套件,主要应用于执行命令和程序时,系统以交互形式要求输入指定字符串,实现交互通信。

expect自动交互流程:

spawn启动指定进程---expect获取指定关键字---send向指定程序发送指定字符---执行完成退出.

expect常用命令总结:

linux expect详解

spawn               交互程序开始后面跟命令或者指定程序
expect              获取匹配信息匹配成功则执行expect后面的程序动作
send exp_send       用于发送指定的字符串信息
exp_conTinue        在expect中多次匹配就需要用到
send_user           用来打印输出 相当于sHell中的echo
exit                退出expect脚本
eof                 expect执行结束 退出
set                 定义变量
puts                输出变量
set timeout         设置超时时间

linux expect详解

例:

1.ssh@L_696_12@远程主机执行命令,执行方法 expect 1.sh 或者 ./1.sh

# vim 1.sh 

#!/usr/bin/expect

spawn ssh [email protected] df -Th
expect "*password"
send "123456\n"
expect eof

2. ssh远程@L_696_12@主机执行命令,在sHell脚本中执行expect命令,执行方法sh 2.sh、bash 2.sh 或./2.sh都可以执行.

linux expect详解

#!/bin/bash

passwd=‘123456‘

/usr/bin/expect <<-EOF

set time 30
spawn ssh [email protected] df -Th
expect {
"*yes/no" { send "yes\r"; exp_conTinue }
"*password:" { send "$passwd\r" }
}
expect eof
EOF

linux expect详解

3.expect执行多条命令

linux expect详解

#!/usr/bin/expect -f

set timeout 10

spawn sudo su - root
expect "*password*"
send "123456\r"
expect "#*"
send "ls\r"
expect "#*"
send "df -Th\r"
send "exit\r"
expect eof

linux expect详解

4. 创建ssh key,将id_rsa和id_rsa.pub文件分发到各台主机上面。

linux expect详解

1.创建主机配置文件

[[email protected] script]# cat host 
192.168.1.10 root 123456
192.168.1.20 root 123456
192.168.1.30 root 123456

[[email protected] script]# ls
copykey.sh  hosts
2.编写copykey.sh脚本,自动生成密钥并分发key.
[[email protected] script]# vim copykey.sh

#!/bin/bash

# 判断id_rsa密钥文件是否存在
if [ ! -f ~/.ssh/id_rsa ];then
 ssh-keygen -t rsa -P "" -f ~/.ssh/id_rsa
else
 echo "id_rsa has created ..."
fi

#分发到各个节点,这里分发到host文件中的主机中.
while read line
  do
    user=`echo $line | cut -d " " -f 2`
    ip=`echo $line | cut -d " " -f 1`
    passwd=`echo $line | cut -d " " -f 3`
    
    expect <<EOF
      set timeout 10
      spawn ssh-copy-id [email protected]$ip
      expect {
        "yes/no" { send "yes\n";exp_conTinue }
        "password" { send "$passwd\n" }
      }
     expect "password" { send "$passwd\n" }
EOF
  done <  hosts

linux expect详解

 5. sHell调用expect执行多行命令.

linux expect详解

#!/bin/bash 
ip=$1  
user=$2 
password=$3 

expect <<EOF  
    set timeout 10 
    spawn ssh [email protected]$ip 
    expect { 
        "yes/no" { send "yes\n";exp_conTinue } 
        "password" { send "$password\n" }
    } 
    expect "]#" { send "useradd hehe\n" } 
    expect "]#" { send "touch /tmp/test.txt\n" } 
    expect "]#" { send "exit\n" } expect eof 
 EOF  
 #./ssh5.sh 192.168.1.10 root 123456 

linux expect详解

 

文档:https://www.cnblogs.com/yxh168/p/9028122.html

        https://www.cnblogs.com/lisenlin/p/9058557.html

转载自  https://www.cnblogs.com/saneri/p/10819348.html

大佬总结

以上是大佬教程为你收集整理的linux expect详解全部内容,希望文章能够帮你解决linux expect详解所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:linux详解