$ scp source_file_path destination_file_path
Single file
$ scp ~/my_local_file.txt user@remote_host.com:/some/remote/directory
Multiple files
$ scp foo.txt bar.txt username@remotehost:/path/directory/
Single file
$ scp user@remote_host.com:/some/remote/directory ~/my_local_file.txt
Multiple files
$ scp username@remotehost:/path/directory/\{foo.txt,bar.txt\} .
$ scp -v source_file_path destination_file_path
$ scp -r source_file_path destination_file_path
$ scp -C source_file_path destination_file_path
$ scp -i private_key.pem ~/test.txt [email protected]:/some/path/test.txt