copy file from ssh to local code example
Example 1: scp send file
scp ./file.txt remote_username@remote_ip:/remote/directory
Example 2: ssh transfer file from local to remote
scp file.txt [email protected]:/remote/directory
Example 3: scp local to remote
scp -i <private_key> ./file.txt remote_username@remote_ip:/remote/directory
Example 4: copy file from ssh server to local
scp host_name:file_server path_local
Example 5: 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 6: copy files from local to host ssh
$ scp * remoteuser@remoteserver:/remote/folder/