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 *.js mike@devbox:~/projects/cakeStore/styles/
rsync -r mike@devbox:~/projects/cakeStore /Users/mike/devProjects/
rsync -e ssh --progress {{remote_host_name}}:{{remote_file}} {{local_file}}