Transfer files either to or from a remote host (not between two remote hosts). Can transfer single files, or multiple files matching a pattern.
rsync {{path/to/file}} {{remote_host_name}}:{{remote_host_location}}
rsync {{remote_host_name}}:{{remote_file_location}} {{local_file_location}}
rsync -az {{path/to/file}} {{remote_host_name}}:{{remote_host_location}}
rsync -r {{remote_host_name}}:{{remote_folder_location}} {{local_folder_location}}
rsync -ru {{remote_host_name}}:{{remote_folder_location}} {{local_folder_location}}
rsync -e ssh --progress {{remote_host_name}}:{{remote_file}} {{local_file}}
rsync -e ssh --info=progress2 {{remote_host_name}}:{{remote_file}} {{local_file}}