标签:expect shell
文件分发系统一个机器上的多个文件要同步到多台机器上,该如何处理?
需求:将192.168.221.10机器上的/aa/aa.txt、/bb/bb.txt、/cc/cc.txt、/dd/dd.txt同步到192.168.221.20,192.168.221.30这两台机器上
mkdir {/aa/,/bb/,/cc/,/dd/}
echo "aa" > /aa/aa.txt;echo "bb" > /bb/bb.txt;echo "cc" > /cc/cc.txt;echo "dd" > /dd/dd.txt
vim /usr/local/sbin/expect/one-more-rsync.sh
#!/usr/bin/expect
set passwd "root"
set user "root"
set host [lindex $argv 0]
set file [lindex $argv 1]
spawn rsync -avR --files-from=$file / $user@$host:/
expect {
"yes/no" {send "yes\r";exp_continue}
"password:" {send "$passwd\r"}
}
expect eof
chmod +x /usr/local/sbin/expect/one-more-rsync.sh
vim /tmp/publicfilelist.txt
/aa/aa.txt
/bb/bb.txt
/cc/cc.txt
/dd/dd.txt
vim /tmp/desip.txt
192.168.221.20
192.168.221.30
vim /usr/local/sbin/expect/run.sh
#!/bin/bash
publicfilelist="/tmp/publicfilelist.txt"
for desip in `cat /tmp/desip.txt`; do
./one-more-rsync.sh $desip $publicfilelist //注意参数的顺序
done
[root@localhost expect]# bash run.sh
spawn rsync -avR --files-from=/tmp/publicfilelist.txt / root@192.168.221.20:/
root@192.168.221.20‘s password:
building file list ... done
aa/
aa/aa.txt
bb/
bb/bb.txt
cc/
cc/cc.txt
dd/
dd/dd.txt
sent 328 bytes received 100 bytes 856.00 bytes/sec
total size is 12 speedup is 0.03
spawn rsync -avR --files-from=/tmp/publicfilelist.txt / root@192.168.221.30:/
The authenticity of host ‘192.168.221.30 (192.168.221.30)‘ can‘t be established.
ECDSA key fingerprint is SHA256:UiIDDUfExrEZLxrI8+z6PWjWsNCO2GTDDfTKpEhQaWY.
ECDSA key fingerprint is MD5:4e:79:bd:c6:bb:8d:b7:ee:1a:a4:cb:25:03:22:10:5f.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added ‘192.168.221.30‘ (ECDSA) to the list of known hosts.
root@192.168.221.30‘s password:
building file list ... done
aa/
aa/aa.txt
bb/
bb/bb.txt
cc/
cc/cc.txt
dd/
dd/dd.txt
sent 328 bytes received 100 bytes 285.33 bytes/sec
total size is 12 speedup is 0.03
标签:expect shell
原文地址:http://blog.51cto.com/13480443/2088161