ssh copy file from server to local code example
Example 1: copy from remote to local
scp file.txt [email protected]:/remote/directory
Example 2: ssh download file
scp [email protected]:foobar.txt /local/dir
Example 3: copy file from ssh server to local
scp host_name:file_server path_local
Example 4: copy files from local to host ssh
$ scp * remoteuser@remoteserver:/remote/folder/