how to copy file from ssh to local code example
Example 1: ssh transfer file from local to remote
scp file.txt [email protected]:/remote/directory
Example 2: copy file from ssh server to local
scp host_name:file_server path_local
Example 3: how to copy file using ssh
$ sudo apt install openssh-server
$ sudo systemctl enable ssh
$ sudo systemctl start ssh
$ scp myfile.txt remote_user@remote_ip_address
Example 4: copy from remote server
scp -i <KEY CERTIFICATE | .ppk or .pem file> <source URL of local server or remote server> <destination URL of local server or remote server>
Example 5: copy files from local to host ssh
$ scp * remoteuser@remoteserver:/remote/folder/