Created
February 17, 2016 16:30
-
-
Save adamamyl/4e16931b1c41be0ed906 to your computer and use it in GitHub Desktop.
get gpg keys for people in an addressbook dump (where the email address is the last field)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
awk '{print $NF}' addressbook.csv | head | while read L; do gpg --keyserver pgp.mit.edu --search-keys ${L}; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment