1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-07 23:27:48 +02:00
gnupg/doc/mksamplekeys
Werner Koch 7441e622ff Add mksamplekeys script.
* doc/mksamplekeys: New.
--
Note that we have the same script in the 1.4 branch.  That should be
removed and only this one shall be used.
2012-03-26 15:48:47 +02:00

12 lines
255 B
Plaintext
Executable File

#/bin/sh
# Generate a samplekeys.asc
keys='1E42B367 99242560 87978569
4F25E3B6 5B0358A2 57548DCD B2D7795E 1CE0C630'
for i in $keys; do
gpg --list-keys $i | awk ' { print " " $0 }'
done
echo
gpg --export-options export-minimal --export -a $keys