Transfers a file either to or from a remote host. Does not allow transfer between two remote hosts. Can transfer single files or files matched by 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}}