If you need to copy and paste your public key into dozens of different VM's in Azure or AWS this can be handy.
It copies your public ssh key to the clip board and displays it on screen
# put this into ~/.bash_profile
alias getkey="cat ~/.ssh/id_rsa.pub | tee >(pbcopy)"
# and source it
source ~/.bash_profile
0 Comments