Secure copy. Copy files between hosts using Secure Copy Protocol over SSH.
scp {{local_file}} {{remote_host}}:{{/path/remote_file}}
scp {{remote_host}}:{{/path/remote_file}} {{/path/local_dir}}
scp -r {{remote_host}}:{{/path/remote_dir}} {{/path/local_dir}}
scp -3 {{host1}}:{{/path/remote_file.ext}} {{host2}}:{{/path/remote_dir}}
scp {{local_file}} {{remote_username}}@{{remote_host}}:{{/remote/path}}
scp -i {{~/.ssh/id_rsa}} {{local_file}} {{remote_host}}:{{/path/remote_file}}