Howto transfer files via ssh (scp)
From How2s
(Redirected from How2 transfer files via ssh (scp))
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.

