#!/bin/bash
#日志名称
SRC=/home/gxJars/staticHtml/html/html/acce/    #代码颁布服务器目录
DST=/home/gxJars/staticHtml/html/acce    #指标服务器目录
IP="192.168.0.3"    #指标服务器IP，，，，，，，多个以空格隔开
USER=root
inotifywait -mrq --timefmt '%Y-%m-%d %H:%M' --format '%T %w%f %e' --exclude "(.swp|.swx|.svn)" \
-e modify,create,move,delete,close_write,attrib $SRC | while read files
do
    rsync -ahqzt --delete  $SRC $DST
    echo $files >>/tmp/rsync_fhtx_html.log 2>&1

done
<!--耗时1788537250.876秒-->