On Sun, 25 Jul 1999, Robert Guerra wrote:
> ie. 1. list all keys which use RSA, or export all rsa keys?
gpg --list-keys --with-colons \
| grep "^pub:u:[0-9]*:1:" \
| cut -f5 -d: \
| while read id; do gpg --export-all --armor 0x${id}; done
cu
Michael