copy files from local to server ssh code example
Example 1: copy file from ssh server to local
scp host_name:file_server path_local
Example 2: copy files from local to host ssh
$ scp * remoteuser@remoteserver:/remote/folder/
Example 3: ssh usage copy file
cp original_file new_file