Answers for "copy ssh key mac"

2

copy ssh key mac

cat ~/.ssh/id_rsa.pub | pbcopy
Posted by: Guest on October-28-2020
3

copy my ssh key

clip < ~/.ssh/id_rsa.pub
Posted by: Guest on April-13-2020
3

how to copy ssh key

ssh-copy-id -i ~/.ssh/mykey user@host
Posted by: Guest on March-06-2020
0

copy remote ssh key mac

cat ~/.ssh/id_rsa.pub | ssh <user>@<hostname> 'cat >> .ssh/authorized_keys && echo "Public key successfully copied"'
Posted by: Guest on December-07-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language