This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Rsync Helpers ====== ===== Continuously sync files, monitoring for changes. ===== <code>apt-get install inotify-tools</code> <code>while inotifywait -r -e modify,create,delete,move /var/www/; do rsync -avP root@192.168.1.1:/var/www/ /var/www; done > /dev/null 2>&1 < /dev/null</code>