Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 306 Bytes

ssh_transfers.md

File metadata and controls

18 lines (14 loc) · 306 Bytes

SSH Transfers

Send a file

scp -P <OPTIONAL_PORT> <file_to_upload> <username>@<hostname>:<destination_path>

Download a file

scp -r <username>@<hostname>:<path_to_download> <path_to_save>

use pscp.exe on Windows

And Tunnel:

 ssh -D 8080 -q -C -N user@domain.com