copy ssh key from terminal mac code example
Example 1: how to copy contents of ssh key into clipboard
pbcopy < ~/.ssh/id_rsa.pub
Example 2: how to copy ssh key
ssh-copy-id -i ~/.ssh/mykey user@host
pbcopy < ~/.ssh/id_rsa.pub
ssh-copy-id -i ~/.ssh/mykey user@host