We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7602d9e commit 3f8ad56Copy full SHA for 3f8ad56
doc/mksamplekeys
@@ -1,11 +1,10 @@
1
#/bin/sh
2
# Generate a samplekeys.asc
3
4
-keys='1E42B367 99242560 87978569
5
- 4F25E3B6 5B0358A2 57548DCD B2D7795E 1CE0C630'
+keys='1E42B367 99242560 87978569 4F25E3B6 5B0358A2 57548DCD B2D7795E 1CE0C630'
6
7
for i in $keys; do
8
- gpg --list-keys $i | awk ' { print " " $0 }'
+ gpg --list-keys $i | awk '{ if ( $0 != "") print " " $0; else print $0; }'
9
done
10
echo
11
gpg --export-options export-minimal --export -a $keys
0 commit comments