how to view your ssh keys code example
Example 1: see ssh key
# see SSH key List
~/.ssh
# see public key from existing file
cat ~/ssh/<filename>.pub
Example 2: Check Available SSH Keys on Your Computer
for key in ~/.ssh/id_*; do ssh-keygen -l -f "${key}"; done | uniq