mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-04 20:38:50 +01:00
467ac827b5
* mksamplekeys, samplekeys.asc: Add the PGP global directory key.
13 lines
203 B
Plaintext
Executable File
13 lines
203 B
Plaintext
Executable File
#/bin/sh
|
|
# Generate a samplekeys.asc
|
|
|
|
keys="5B0358A2 57548DCD 621CC013 99242560 CA57AD7C B2D7795E"
|
|
|
|
for i in $keys; do
|
|
gpg --list-keys $i | awk ' { print " " $0 }'
|
|
done
|
|
echo
|
|
gpg --export -a $keys
|
|
|
|
|