良许Linux教程网 Linux教程 linux中expect命令详解

linux中expect命令详解

expect

expect 是由Don Libes基于Tcl(Tool Command Language )语言开发的,主要应用于自动化交互式操作的场景,借助Expect处理交互的命令,可以将交互过程如:ssh登录,ftp登录等写在一个脚本上,使之自动化完成。尤其适用于需要对多台服务器执行相同操作的环境中,可以大大提高系统管理人员的工作效率

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匹配多个字符串在执行动作后加此命令

 

except最常用的语法(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 “Good bye\n" }

匹配hi,hello,bye任意字符串时,执行相应输出。等同如下:

expect {

"hi"{ send "You said hi\n"}

"hehe"{ send "Hehe yourself\n"}

"bye"{ send “Good bye\n"}

}

示例

cat ssh1.exp

#!/usr/bin/expect

spawn ssh 192.168.8.100

expect {

"yes/no" { send"yes\n";exp_continue }

"password" { send“magedu\n" }

}

interact

#expect eof

示例:变量

cat ssh2.exp

#!/usr/bin/expect

set ip 192.168.8.100

set user root

set password magedu

set timeout 10

spawn ssh $user@$ip

expect {

"yes/no" { send"yes\n";exp_continue }

"password" { send"$password\n" }

}

interact

示例:位置参数

vim ssh3.exp

#!/usr/bin/expect

set ip [lindex $argv 0]

set user [lindex $argv 1]

set password [lindex $argv 2]

spawn ssh $user@$ip

expect {

"yes/no" { send"yes\n";exp_continue }

"password" { send"$password\n" }

}

interact

#./ssh3.exp 192.168.8.100 rootmagedu

示例:执行多个命令

cat ssh4.exp

#!/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 magedu |passwd –stdin haha\n" }

send "exit\n"

expect eof

#./ssh4.exp 192.168.8.100 rootmagedu

示例:shell脚本调用expect

vim ssh5.sh

#!/bin/bash

ip=$1

user=$2

password=$3

expect

set timeout 10

spawn ssh$user@$ip

expect {

"yes/no" { send"yes\n";exp_continue}

"password" { send"$password\n" }

}

expect "]#" { send"useraddhehe\n" }

expect "]#" { send "echomagedu|passwd–stdinhehe\n" }

expect "]#" { send"exit\n" }

expect eof

EOF

#./ssh5.sh 192.168.8.100 rootmagedus

以上就是良许教程网为各位朋友分享的linux中expect命令详解。想要了解更多Linux相关知识记得关注公众号“良许Linux”,或扫描下方二维码进行关注,更多干货等着你!

本文由 良许Linux教程网 发布,可自由转载、引用,但需署名作者且注明文章出处。如转载至微信公众号,请在文末添加作者公众号二维码。
良许

作者: 良许

良许,世界500强企业Linux开发工程师,公众号【良许Linux】的作者,全网拥有超30W粉丝。个人标签:创业者,CSDN学院讲师,副业达人,流量玩家,摄影爱好者。
上一篇
下一篇

发表评论

联系我们

联系我们

公众号:良许Linux

在线咨询: QQ交谈

邮箱: yychuyu@163.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部