工做中有時須要對比文件是否一致,經過如下腳本能夠實現(比較簡單):分享出來,但願能幫助到有一樣需求的朋友~
#!/bin/bash
#對比服務器上文件是否同樣
# Richard shen 2012/07/08
# BLOG: http://lxsym.blog.51cto.com
LC_ALL='en_US.UTF-8'
basedir=`dirname $0`
HOST=$basedir/host.txt
PASSWD="abcd" #密碼
FILE=$basedir/file.txt
LOG=$basedir/tmp.log
>$LOG
[ ! -f /usr/bin/nc ] && yum -y install nc
[ ! -f /usr/bin/expect ] && yum -y install expect
auto_smart_ssh () {
expect -c "set timeout -1;
spawn ssh -o StrictHostKeyChecking=no $2 ${@:3};
expect {
*assword:* {send -- $1\r;
expect {
*denied* {exit 2;}
eof
}
}
eof {exit 1;}
}
"
# return $?
}
num=0
for file in `cat $FILE`;do
for host in `cat $HOST`;do
[[ $host =~ "^#" ]] && continue
let 'num++'
if ! /usr/bin/nc -w 1 $host 22 > /dev/null; then
echo " ssh connect failed." | tee -a $LOG
continue
else
echo -e "\e[32m$host ($FILE) MD5 compared files...\e[0m"
auto_smart_ssh $PASSWD root@$host md5sum $file | grep $file | grep -v StrictHostKeyChecking | tee -a $LOG
fi
done
echo "----------------------------------------------------------"
donehtml
對比的IP地址寫入host.txt,須要對比的文件(支持多個文件)寫入file.txt
輸出結果爲:bash
192.168.113.108 (./file.txt) MD5 compared files...
c84509bb3b109506935dba56b667a136 /data/server/www/apps/ad/fullcollumn.html
192.168.113.111 (./file.txt) MD5 compared files...
c84509bb3b109506935dba56b667a136 /data/server/www/apps/ad/fullcollumn.html
----------------------------------------------------------
192.168.113.108 (./file.txt) MD5 compared files...
d2c965f5222ff47432313c76863f428d /data/server/www/apps/ad/sky.html
192.168.113.111 (./file.txt) MD5 compared files...
d2c965f5222ff47432313c76863f428d /data/server/www/apps/ad/sky.html服務器