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

inotify.sh脚本范例

时间:2014-09-07 21:04:55      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:os   ar   for   div   sp   on   c   amp   ad   

inotify.sh脚本范例

 
 
 

[root@A-Server58 ~]# cat /server/scripts/inotify.sh
#!/bin/bash
#para
host01=192.168.1.111
src=/dingjian
dst=dingjian
user=rsync_backup
rsync_passfile=/etc/rsync.password
inotify_home=/usr/local/inotify-tools-3.14/

#judge
if [ ! -e "$src" ] \
|| [ ! -e "${rsync_passfile}" ] \
|| [ ! -e "${inotify_home}/bin/inotifywait" ] \
|| [ ! -e "/usr/bin/rsync" ];
then
echo "Check File and Folder"
exit 9
fi
${inotify_home}/bin/inotifywait -mrq --timefmt ‘%d/%m/%y %H:%M‘ --format ‘%T %w%f‘ -e close_write,delete,create,attrib $src \
| while read file
do
# rsync -avzP --delete --timeout=100 --password-file=${rsync_passfile} $src $user@$host01::$dst >/dev/null 2>&1
cd $src && rsync -aruz -R --delete ./ --timeout=100 $user@$host01::$dst --password-file=${rsync_passfile} >/dev/null 2>&1
done
exit 0

inotify.sh脚本范例

标签:os   ar   for   div   sp   on   c   amp   ad   

原文地址:http://www.cnblogs.com/L-H-R-X-hehe/p/3960774.html

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