Skip to content

Instantly share code, notes, and snippets.

@easydevmixin
Created October 19, 2016 18:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save easydevmixin/57a5658f12fe3a48aea07bdfdc570ab0 to your computer and use it in GitHub Desktop.
Save easydevmixin/57a5658f12fe3a48aea07bdfdc570ab0 to your computer and use it in GitHub Desktop.
Script showing fingerprints for public key files (RSA and DSA)
for file in *.pub
do
echo $file
ssh-keygen -l -E md5 -f $file
echo
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment