Skip to content

Instantly share code, notes, and snippets.

@adamamyl
Created February 17, 2016 16:30
Show Gist options
  • Save adamamyl/4e16931b1c41be0ed906 to your computer and use it in GitHub Desktop.
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)
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