how to find ssh key on mac code example
Example 1: macbook get my public ssh key
cat ~/.ssh/id_rsa.pub
Example 2: ssh key mac
ssh-keygen -t rsa
//copy to clipboard
pbcopy < ~/.ssh/id_rsa.pub
Example 3: see ssh key
# see SSH key List
~/.ssh
# see public key from existing file
cat ~/ssh/<filename>.pub
Example 4: get ssh key mac
$ ls -al ~/.ssh
# Lists the files in your .ssh directory, if they exist