copy a 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: how to copy file using ssh
# This need to be done in server side only
$ sudo apt install openssh-server
$ sudo systemctl enable ssh
$ sudo systemctl start ssh
# Need to be done in client side only
$ scp myfile.txt remote_user@remote_ip_address
Example 4: copy files from local to host ssh
$ scp * remoteuser@remoteserver:/remote/folder/