#!/bin/bash

for key in $1/0x*; do
	gpg --with-colons < $key | grep "^pub:" | head -n 1 | \
		cut -d : -f 3,4
done
