/usr/bin/expect的简单使用
最近在抽空学习SHELL。在shell脚本中有些交互问题不好处理,需要用到expect
刚好公司有个shell大神,读他的代码发现频繁使用了expect.因此记录这个以便学习
以scp 命令为列
平时我们使用scp 命令的时候如果是第一次通讯需要通过交互的方式手工按yes之后才能进入第二步,然后手工输入密码才能进行文件传输引入expect之后不需要交互步骤即可完成
cat scp.exp
#!/usr/bin/expect
set timeout 20
set ip [lindex $argv 0]
set user [lindex $argv 1]
set passwd [lindex $argv 2]
set file [lindex $argv 3]
set dir [lindex $argv 4]
spawn scp $file $user@$ip:$dir
expect {
"*password:*" {
set timeout 1000
send "$passwd\r"
exp_continue
}
"*es/no)?*" {
send "yes\r"
exp_continue
}
timeout {
puts "connect is timeout"
exit 3
}
}
用法
手工用法如下
[root@shell32 mnt]# ./scp.exp 192.168.183.33 root Slt9gyz8BwjI /mnt/apache-tomcat-8.5.73.tar.gz /mnt/apache-tomcat-8.5.73.tar.gz
spawn scp /mnt/apache-tomcat-8.5.73.tar.gz root@192.168.183.33:/mnt/apache-tomcat-8.5.73.tar.gz
root@192.168.183.33's password:
apache-tomcat-8.5.73.tar.gz
嵌入脚本的命令格式如下
scp.exp “ t a r g e t i p " " r o o t " " {target_ip}" "root" " targetip""root""{target_passwd}” “ S C R I P T D I R / {SCRIPT_DIR}/ SCRIPTDIR/{pack_name}” “${SCRIPT_DIR}/”