[转帖]Shell 中的 expect 命令

shell,expect,命令 · 浏览次数 : 0

小编点评

**expect 介绍** expect 是一个用于自动化交互式命令行的工具。它可以将交互式命令行操作自动化为文本文件或 shell脚本中。 **安装 expect** 可以使用 `yum` 或 `pip` 安装 `expect`: ```bash # yum sudo yum install expect2. # pip pip install expect ``` **使用 expect** 1. 创建一个配置文件,包含您要执行的命令。 2. 使用 `expect` 的 `spawn` 命令启动一个新的进程。 3. 使用 `expect` 的 `send` 和 `expect` 命令向进程发送命令。 4. 使用 `expect` 的 `expect` 命令从进程中接收响应。 5. 使用 `expect` 的 `interact` 命令允许用户在交互式模式中执行后续的操作。 6. 使用 `expect` 的 `EOF` 命令处理文件输入和输出。 **示例** 以下是一个使用 `expect` 在远程主机上安装软件的示例: ``` # 创建配置文件 file_content=" sudo apt-get update && sudo apt-get install software-name" # 创建脚本文件 script_name="install_software.sh" cat << EOF > "$script_name" #!/bin/bash echo "Hello world!" EOF # 创建脚本文件 file_content=" ssh root@remote_host 'sudo apt-get update && sudo apt-get install software-name'" # 创建 expect 配置文件 file_content=" spawn -n 1 ./install_software.sh expect -i 10 -c "sleep 10;exit" interact " # 创建 shell 文件 file_content=" /bin/bash $script_name " # 执行脚本文件 expect -c "$file_content" ``` **总结** `expect` 是一个强大的自动化工具,可以用于自动执行各种命令和操作。通过创建配置文件,您可以轻松地自动化您对远程主机的操作。

正文

https://www.cnblogs.com/chenjo/p/12892894.html

 

 

expect 介绍

借助 expect 处理交互的命令,可以将交互过程如 ssh 登录, ftp 登录等写在一个脚本上,使之自动化完成。尤其适用于需要对多台服务器执行相同操作的环境中,可以大大提高系统管理员的工作效率。

expect 安装

[root@ansible ssh]# rpm -qa | grep expect
expect-5.45-14.el7_1.x86_64
[root@ansible ssh]# yum -y install expect

expect 语法

    expect [选项] [ -c cmds ] [ [ -[f|b] ] cmdfile ] [ args ] 

    选项 

         -c:从命令行执行expect脚本,默认expect是交互地执行的   

               示例:expect -c 'expect "\n" {send "pressed enter\n"}' 

         -d:输出调试信息   

               示例:expect  -d ssh.exp

          expect中的相关命令 

                spawn:启动新的进程 

                send:向进程发送字符串 

                expect:从进程接收字符串 

                interact:允许用户交互

                exp_continue  匹配多个字符串时在执行动作后加此命令 

 

     expect最常用的语法(tcl语言:模式-动作) 

        单一分支模式的语法: 

              expect "hi" { send "You said hi\n" }           匹配到 hi 后,会输出"you said hi",并换行

        多分支模式的语法: 

              expect "hi" { send "You said hi\n" } \ "hehe" { send “Hehe yourself\n" } \ "bye" { send "Goodbye\n" } 

        匹配 hi, hehe, bye 中的任意字符串时, 发送相应字符串。等同于:

              expect { "hi" { send "You said hi\n" } "hehe" { send "Hehe yourself\n" } "bye" { send "Goodbye\n" } } 

自动拷贝文件到远程主机

执行 expect 不能以 `bash file` 的方式来执行        (开启一个子shell进程)

必须通过  `chmod +x file ; ./file`  这样的方式    (不会开启子shell进程, 只在当前shell环境中执行)

expect 如果只交互一次如拷贝文件   结尾就使用 `expect eof` 

如果需要连续交互如登录远程主机执行各种命令结尾就需使用 `interact`

示例一

1.安装expect  系统默认没有此命令
   yum install expect

2.创建配置文件
[root@ansible ssh]# vi hosts
192.168.31.134 root root
192.168.31.135 root root
192.168.31.136 root root

3.编写脚本
[root@ansible ssh]# ls
copykey.sh  hosts
[root@ansible ssh]# vi copykey.sh 
#!/bin/bash
if [ ! -f ~/.ssh/id_rsa ];then
 ssh-keygen -t rsa -P "" -f ~/.ssh/id_rsa
else
 echo "id_rsa has created ..."
fi
#分发到各个节点
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 $user@$ip
      expect {
        "yes/no" { send "yes\n";exp_continue }
        "password" { send "$passwd\n" }
      }
     expect "password" { send "$passwd\n" }
EOF
  done <  hosts

4.给脚本执行权限
  chmod +x copykey.sh

5.执行脚本
   ./copykey.sh
                      

读取配置文件自动执行ssh

示例二

#!/usr/bin/expect
spawn scp /etc/fstab root@192.168.33.129:/root
expect {
     "yes/no" { send "yes\n";exp_continue }
     "password" { send "root\n" }
}
expect eof



[root@centos7 ~]# bash one.expect 
one.expect: line 2: spawn: command not found
couldn't read file "{": no such file or directory
one.expect: line 4: yes/no: No such file or directory
one.expect: line 4: exp_continue: command not found
one.expect: line 5: password: command not found
one.expect: line 6: syntax error near unexpected token `}'
one.expect: line 6: `}'
[root@centos7 ~]# ./one.expect 
spawn scp /etc/fstab root@192.168.33.129:/root
The authenticity of host '192.168.33.129 (192.168.33.129)' can't be established.
RSA key fingerprint is SHA256:FzQU22CgZBnSbmZAuoypliidxPK9PsOFjJwcYUZWk5E.
RSA key fingerprint is MD5:a8:2b:51:c3:dc:09:65:89:78:d2:d5:e0:9f:e9:30:1a.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.33.129' (RSA) to the list of known hosts.
root@192.168.33.129's password: 
fstab

示例三

#!/usr/bin/expect 
  set ip [lindex $argv 0] 
  set user [lindex $argv 1] 
  set password [lindex $argv 2] 
  set timeout 10 
  spawn ssh $user@$ip 
   expect {   
       "yes/no" { send "yes\n";exp_continue }         
       "password" { send "$password\n" } 
    } 
   expect "]#" { send "useradd haha\n" }
   expect "]#" { send "echo aaa|passwd --stdin haha\n" }
   send "exit\n" expect eof 
  #./ssh4.exp 192.168.8.100 root aa

执行多条命令

示例四

#!/bin/bash 
ip=$1  
user=$2 
password=$3 
expect <<EOF  
    set timeout 10 
    spawn ssh $user@$ip 
    expect { 
        "yes/no" { send "yes\n";exp_continue } 
        "password" { send "$password\n" }
    } 
    expect "]#" { send "useradd hehe\n" } 
    expect "]#" { send "echo rrr|passwd --stdin hehe\n" } 
    expect "]#" { send "exit\n" } expect eof 
 EOF  
 #./ssh5.sh 192.168.8.100 root aaa 

shell调用expect

参考: https://www.cnblogs.com/yxh168/p/9028122.html

与[转帖]Shell 中的 expect 命令相似的内容:

[转帖]Shell 中的 expect 命令

https://www.cnblogs.com/chenjo/p/12892894.html 目录 expect 介绍 expect 安装 expect 语法 自动拷贝文件到远程主机 示例一 示例二 示例三 示例四 expect 介绍 借助 expect 处理交互的命令,可以将交互过程如 ssh 登

[转帖]Linux中EOF和Expect命令详解

一、EOF说明 Shell中通常将EOF与 << 结合使用,表示后续的输入作为子命令或子Shell的输入,直到遇到EOF为止,再返回到主调Shell。可以把EOF替换成其他东西,意思是把内容当作标准输入传给程序。 回顾一下< <的用法。当shell看到< <的时候,它就会知道下一个词是一个分界符。在

[转帖]Shell编程之免交互

目录 交互的概念与Linux中的运用Here Document 免交互tee命令重定向输出加标准输出支持变量替换多行注释Expect实例操作免交互预设值修改用户密码创建用户并设置密码实现 ssh 自动登录 交互的概念与Linux中的运用 交互:当计算机播放某多媒体程序的时候,编程人员可以发出指令控制

[转帖]spawn....expect简介及EOF遇到的坑

spawn....expect简介及EOF遇到的坑 为什么使用spawn expect ....expectexpect命令命令演示在shell脚本中使用expect 为什么使用spawn expect … 很多时候,指令的执行是需要交互的,比如下面这个命令大家一定很熟悉: ssh-keygen -

[转帖]Shell脚本中利用expect实现非交互式

https://developer.aliyun.com/article/885723?spm=a2c6h.24874632.expert-profile.295.7c46cfe9h5DxWK 简介: expect非交互式 expect可以在脚本中完成一些交互式的操作,例如远程登录时要输入yes或者

[转帖]如何通过shell脚本对一个文件中的所有数值相加并求和

https://developer.aliyun.com/article/886170?spm=a2c6h.24874632.expert-profile.255.7c46cfe9h5DxWK 1.背景 在一些巡检脚本中有时通常需要把一个文件中的数值进行相加得出综合,由于是文件中的所有数值,因此不能

[转帖]shell命令替换~date用法~如果被替换命令的输出内容包括多行或有多个连续的空白符,输出变量时应该将变量用双引号包围

https://www.cnblogs.com/mianbaoshu/p/12069458.html Shell 命令替换是指将命令的输出结果赋值给某个变量。比如,将使用ls命令查看到的某个目录中的内容保存到某个变量中,这就需要使用命令替换。 Shell 中有两种方式可以完成命令替换,一种是反引号`

[转帖]Shell中常用的date时间命令

常用FORMAT %Y YYYY格式的年份(Year) %m mm格式的月份(),01-12 %d dd格式的日期(day of month),01-31 %H HH格式的小时数(),00-23 %M MM格式的分钟数(),00-59 %S SS格式的秒数(),00-59 %F YYYY-mm-dd

[转帖]Shell if 条件判断

Shell 语言中的if条件 一、if的基本语法: if [ command ];then 符合该条件执行的语句 elif [ command ];then 符合该条件执行的语句 else 符合该条件执行的语句 fi 二、文件/文件夹(目录)判断 [ -b FILE ] 如果 FILE 存在且是一个

[转帖]总结:shell中的if条件判断

一、if 的基本语法 if [ command ];then xxxelif [ command ];then xxxelse xxxfi 二、常见的一些写法案例 1、if [ "x${var}" = "x" ] 其实就是判断${var}是否为空的意思 2、if [ X"$?" == X"0" ]