contents/grimoire/scp-file-transfers.md
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
----- id: scp-file-transfers title: "Transfer files using SCP" subtitle: "The fastest way to copy files to/from a server" content-type: spell ----- Sometimes I just want to copy a file to my VPS, run a program to process it in some way, and copy it back to my local machine. With _scp_ that's as easy as... ```bash # Copy to server scp <path/to/local/file> <user>@<server>:</path/to/remote/directory> # Copy from server scp <user>@<server>:</path/to/remote/directory> <path/to/local/directory> ``` |