copy ssh key mac code example
Example 1: how to copy contents of ssh key into clipboard
pbcopy < ~/.ssh/id_rsa.pub
Example 2: copy ssh key mac
cat ~/.ssh/id_rsa.pub | pbcopy
Example 3: copy my ssh key
clip < ~/.ssh/id_rsa.pub
Example 4: how to copy ssh key
ssh-copy-id -i ~/.ssh/mykey user@host
Example 5: copy remote ssh key mac
cat ~/.ssh/id_rsa.pub | ssh <user>@<hostname> 'cat >> .ssh/authorized_keys && echo "Public key successfully copied"'