Answers for "scp with ssh key"

4

ssh scp

# download: remote -> local
scp user@remote_host:remote_file local_file 

# upload: local -> remote
scp local_file user@remote_host:remote_file
Posted by: Guest on November-13-2020
5

scp with ssh key

scp -i ~/.ssh/id_rsa.pub FILENAME USER@SERVER:/home/USER/FILENAME
Posted by: Guest on March-07-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language