rsync

Archive

rsync -a SOURCE USER@HOST:DESINATION

-a archive, equal to -rlptgoD
-r recursive
-l links
-p permissions
-t time
-g group
-o owner
-D, equal to --devices --specials
--devices, device files
--specials, special files

Update, Progress, Verbose

rsync -avuP SOURCE USER@HOST:DESINATION

SSH Port

rsync -avuP -e 'ssh -p 7822' SOURCE USER@HOST:DESINATION

Level