scp command in linux to copy file from remote machine to local code example
Example 1: scp send file
scp ./file.txt remote_username@remote_ip:/remote/directory
Example 2: scp local to remote
scp -i <private_key> ./file.txt remote_username@remote_ip:/remote/directory