====== Rsync Helpers ====== ===== Continuously sync files, monitoring for changes. ===== apt-get install inotify-tools 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