except与bash命令结合可以实现文件的批量上传,以及命令的批量执行,减少工作量
一.、文件的批量上传
建立两个脚本一个是与linux主机自动交互的expect脚本,另一个是控制循环执行的for脚本
vim sendfile.exp
#!/usr/bin/expect
if { $argc != 3 } {
#ben di wenjian dao yuan duan de mulu
puts "usage: expect $argv0 file host dir"
exit
}
#define var
set file [lindex $argv 0]
set host [lindex $argv 1]
set dir [lindex $argv 2]
set timeout 300
#linux远端用户的密码
set password "admi@whduc"
#复制本地的文件到远端的目录
spawn scp -P22 -rp $file root@$host:$dir
expect {
"yes/no" {send "yes\r";exp_continue}
"*password" {send "$password\r"}
}
expect eof
cat filesend_xunhuan.sh
#!/bin/bash
#通过这个循环脚本与上边的expect脚本联合将本地文件上传到各个服务器
if [ $# -ne 2 ]
then
echo $"USAGE:$0 file dir"
exit 1
fi
#huo qu yao zhi xing de can shu
file=$1
dir=$2
#tian jia yao pi liang zhixing de zhu ji de biao dan
for i in 84 85 249 250 252 253 254
do
expect sendfile.exp $file 172.16.11.$i "$dir"
done
用法实例:bash filesend_xunhuan.sh zabbix_langchao.sh /tmp
二、文件的批量执行
需要建立两个脚本一个是expect脚本,里边控制等待与linux的交互,另一个是循环脚本,循环在各个主机执行命令。
vim excute.exp #内容如下所示
#!/usr/bin/expect
#参数个数的控制
if { $argc != 2 } {
puts "usage: expect $argv0 ip command"
exit
}
#定义变量
set ip [lindex $argv 0]
set cmd [lindex $argv 1]
set password "admi@whduc"
#设置交互等待的时间,如果脚本等待linux时间太久,建议此值设置大一点。(特别是在在linux主机执行大的脚本时,建议调大)
set timeout 300
#执行的命令和格式如 ssh的命令
spawn ssh root@$ip $cmd
expect {
"yes/no" {send "yes\r";exp_continue}
"*password" {send "$password\r"}
}
expect eof
vim com_excute_cunhuan.sh
#!/bin/bash
# 判断脚本后边跟的参数的数量,如果不符则提示使用方法
if [ $# -ne 1 ]
then
echo $"USAGE:$0 cmd"
echo "Example: bash com_excute_cunhuan.sh source /tmp/zabbix_langchao.sh"
exit 1
fi
#获取要执行的命令
cmd=$1
#通过for循环,循环在不同的主机执行脚本
for i in 84 85 249 250 252 253 254
do
expect excute.exp 172.16.11.$i "$cmd"
done
用法示例: bash com_excute_cunhuan.sh "source /tmp/zabbix_langchao.sh"