Howto transfer files via ssh (scp)
From How2s
You can easily copy files from one place to another via SSH using the command scp.
Example:
scp /path/to/my/local/file user@10.1.2.3:/path/to/my/remote/dir
You can also transfer multiple files:
scp * user@10.1.2.3:/path/to/my/remote/dir
You will be prompted to provide your password.

