Using rsync to syncronize files between two systems

Rsync is a very handy tool at synchronizing the contents of two folders/directories.

And while being great for local folders, it also works remotely, via SSH, thanks to the -e ssh parameter: # rsync -ave ssh sourceserver:/home/user/ /home/user will sync /home/user from the sourceserver with /home/user on the local machine.