小型自动化运维--expect脚本之指定ip,指定文件进行同步操作
# vim 5.expect
#!/usr/bin/expect
set passwd "wtf"
set host [lindex $argv 0]
set file [lindex $argv 1]
spawn rsync -av $file root@$host:$file
expect {
"yes/no" { send "yes\r"}
"password:" { send "$passwd\r" }
}
expect eof
对5.expect授予执行权限:
# chmod a+x 5.expect
执行命令:
#./5.expect 192.168.8.115 /tmp/
截图如下:
-
扩展一:传输到多个机器
# vim /tmp/ip.txt 【创建 ip 列表】
192.168.8.115
192.168.8.116
192.168.8.117
方法一:# for ip in `cat /tmp/ip.txt`; do ./5.expect $ip /tmp/;done
或者:写个for循环脚本,脚本如下:
方法二:
#!/bin/bash
d=`date`
for ip in `cat /tmp/ip.txt`
do ./5.expect $ip /tmp/
done
上面两种方式的区别:
方法一可以直接以命令形式执行,注意命令之间的分号;方法二使用sh for.sh执行!
截图如下:
-
扩展二:多个文件传输到一台主机上
本地主机多个文件同步传输到远程主机上
# vim /tmp/filelist 【创建一个文件列表文件,里面是需要传输的各个文件的路径, 绝对路径 】
/tmp/33.txt
/usr/test
# vim 6.expect
#! /usr/bin/expect
set passwd "wtf"
set host [lindex $argv 0]
set file [lindex $argv 1]
spawn rsync -av --files-from=/tmp/filelist / root@$host:$file
expect {
"yes/no" { send "yes\r"}
"password:" { send "$passwd\r" }
}
expect eof
授权:chmod +x 6.expect
执行:./6.expect 192.168.8.115 /
或者:
# /usr/bin/expect 6.expect 192.168.8.115 /
注:最后的 / 表示远程的根目录 /。截图如下: