SCP is neat little tool for sending or receiving files over SSH.

Seems like I can't learn these commands without having to look them up, so:

Upload

# upload: local -> remote
scp local_file user@remote_host:remote_file

Download

# download: remote -> local
scp user@remote_host:remote_file local_file