The simplest file copy over SSH
scp looks like cp but the source or destination can be a remote machine via SSH. It's the simplest way to move a single file or a small directory across machines. Same key, same agent, same SSH path you've already set up — no new credentials, no new tools.
Where SCP falls short
SCP is great for one-off file copies. It's a poor fit for anything bigger:
- No delta transfer — change a single byte in a 1 GB file, scp re-copies the whole file.
- No resume — connection drops at 99%, start over.
- No sync — can't reconcile two directories or skip what hasn't changed.
- The protocol itself is deprecated — modern
scpcommands actually use SFTP under the hood.
For anything beyond a quick file grab, use rsync (Track 4). For an interactive file browser, use sftp.