码迷,mamicode.com
首页 > 其他好文 > 详细

expect脚本同步文件,构建文件分发系统,批量远程执行命令

时间:2018-07-21 11:53:04      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:exe   批量远程执行   lis   shel   机器   线程   roo   syn   目标   

expect脚本同步文件

自动同步文件

#!/usr/bin/expect
set passwd "123456"
spawn rsync -av root@192.168.133.132:/tmp/12.txt /tmp/
expect {
"yes/no" { send "yes\r"}
"password:" { send "$passwd\r" }
}
expect eof

expect脚本指定host和要同步的文件
指定host和要同步的文件
把本机上的一个文件同步到远程机器上

#!/usr/bin/expect
set passwd "123456"
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

构建文件分发系统

需求背景
对于大公司而言,肯定时不时会有网站或者配置文件更新,而且使用的机器肯定也是好多台,少则几台,多则几十甚至上百台。所以,自动同步文件是至关重要的。
实现思路 首先要有一台模板机器,把要分发的文件准备好,然后只要使用expect脚本批量把需要同步的文件分发到目标机器即可。
核心命令 rsync -av –files-from=list.txt / root@host:/

文件分发系统的实现
rsync.expect 内容:

#!/usr/bin/expect
set passwd "123456"
set host [lindex $argv 0]
set file [lindex $argv 1]
spawn rsync -av --files-from=$file / root@$host:/
expect {
"yes/no" { send "yes\r"}
"password:" { send "$passwd\r" }
}
expect eof

ip.list内容,为需要同步的远程机器IP
192.168.133.132
192.168.133.133

list.txt内容,为同步的文件路径
/tmp/12.txt
/root/1.sh
/root/111/222/lll.txt

rsync.sh 内容

#!/bin/bash
for ip in `cat /tmp/ip.list` #要输入文档的绝对路径
do
    echo $ip
    ./rsync.expect $ip /tmp/list.txt
done

批量远程执行命令

exe.expect 内容

#!/usr/bin/expect
set host [lindex $argv 0]
set passwd "123456"
set cm [lindex $argv 1]
spawn ssh root@$host
expect {
"yes/no" { send "yes\r"}
"password:" { send "$passwd\r" }
}
expect "]*"
send "$cm\r"
expect "]*"
send "exit\r"

exe.sh 内容

#!/bin/bash
for ip in `cat /tmp/ip.list`
do
    echo $ip
    ./exe.expect $ip ;w;free -m;ls /tmp
done

扩展:
shell多线程 http://blog.lishiming.net/?p=448

expect脚本同步文件,构建文件分发系统,批量远程执行命令

标签:exe   批量远程执行   lis   shel   机器   线程   roo   syn   目标   

原文地址:http://blog.51cto.com/13658403/2147911

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!