scp
To copy a file from one local machine to a remote machine using ssh, do the following;
scp /local/path/to/file username@ip_address:/path/to/remote/destination
or if we wish to get a file from a remote machine to the local machine, we can do;
scp username@ip_address:/path/to/remote/file /local/path/to/destination