本文共 752 字,大约阅读时间需要 2 分钟。
一、inotify+svn:
yum -y install inotify-tools
yum -y install subversion
systemctl start svn
#!/bin/bashwhile inotifywait -mrq -e moved_to /home/lee/svn/db/revs/0/ &> /dev/null; dosleep 1; (注意这里要让系统休眠1秒钟,否则同步的是上一个版本的数据) svn checkout file:home/lee/svn /var/www/html &> /dev/null;done &
test.sh
二、inotify+rsync:
yum -y install rsync inotify-tools
#!/bin/bashwhile inotifywait -mrq -e modify,create,move,delete,attrib /home/lee/rsync/ ; dorsync -avz /home/lee/rsync/ --password-file=/root/passwd lee@192.168.8.82::commondone &
chmod a+x test.sh./test.sh 本文转自 Lee_吉 博客,原文链接:http://blog.51cto.com/12173069/2057182 如需转载请自行联系原作者