linux下的expect的安装和使用

1、安装expect

首先安装tcl(下载地址:http://nchc.dl.sourceforge.net/sourceforge/tcl/tcl8.4.11-src.tar.gz
解压
tar -zxvf tcl8.4.11-src.tar.gz
cd tcl8.4.11/unix/
 ./configure
make && make install
安装expect(下载地址:http://sourceforge.net/projects/expect/files/Expect/5.45/expect5.45.tar.gz/download
 tar -zxvf expect5.45.tar.gz 
 cd expect5.45
./configure --with-tclinclude=/tmp/tcl8.4.11/generic --with-tclconfig=/usr/local/lib/

make && make install


检查安装情况

[root@node1 expect5.45]# expect
expect1.1> 
expect1.1> 

安装完成.


2、写一个可以远程备份的脚本

vi scp.exp


#!/usr/local/bin/expect -f
spawn scp -r /opt/test / root@192.168.11.67:/home/
set timeout 10
expect {
"yes/no" {send "yes\r";exp_continue}
}
expect "root@192.168.11.67's password:"
exec sleep 1
send "123\n"                              #密码
interact

在crontab -e中加入定时任务

0 23 * * * /tmp/scp.exp       #每天23点执行任务

如果出现报错:/bin/sh: /tmp/scp.exp: /usr/bin/expect: bad interpreter: No such file or directory

将脚本中的头文件

#!/usr/bin/expect   改成#!/usr/local/bin/expect 

  • 0
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值