# The basic syntax is:
scp username@source:/location/to/file username@destination:/where/to/put
# Copy something from this system to some other system:
scp /file/to/send username@remote:/where/to/put
# Copy something from another system to this system:
scp username@remote:/file/to/send /where/to/put
# Copy something from some system to some other system:
scp username@remote_1:/file/to/send username@remote_2:/where/to/put