# # # http://sunsite.dk/info/guides/rsync/rsync-mirroring.html # # # Copy stuff from remote to local # rsync -ave ssh --delete remote:/home/ftp/pub/ /home/ftp/pub/ # Clone the web server: rsync -ae ssh master:/var/www/ /var/www/ # # # --progress # # rsync -va --progress --delete /vault2/home Backup:/Backup/vault2 # # # rsync -aS --delete --rsh=ssh --exclude=lost+found /export/home SAVEHOST:/export/save # # # # End of file