assuan/
[gnupg.git] / tools / lspgpot
blob585629b5bd8a769a5802588dfb27eb33b1f7d105
1 #!/bin/sh
2 # lspgpot - script to extract the ownertrust values
3 # from PGP keyrings and list them in GnuPG ownertrust format.
5 ../g10/gpg --dry-run --with-fingerprint --with-colons $* | awk '
6 BEGIN { FS=":"
7 printf "# Ownertrust listing generated by lspgpot\n"
8 printf "# This can be imported using the command:\n"
9 printf "# ggp --import-ownertrust\n\n" }
10 $1 == "fpr" { fpr = $10 }
11 $1 == "rtv" && $2 == 1 && $3 == 2 { printf "%s:3:\n", fpr; next }
12 $1 == "rtv" && $2 == 1 && $3 == 5 { printf "%s:4:\n", fpr; next }
13 $1 == "rtv" && $2 == 1 && $3 == 6 { printf "%s:5:\n", fpr; next }