diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-03-14 10:07:46 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-03-14 10:07:46 -0400 |
commit | 733d920b94909b19022276f7288b70afa14713bd (patch) | |
tree | 2ee8c16b4c8d5ef6c0bebf953191540727283d4e /src | |
parent | dc52882f7ecf895377bfbf65833c6a699be4ab28 (diff) |
cleaning up monkeysphere-host show-key output
Diffstat (limited to 'src')
-rwxr-xr-x | src/monkeysphere-host | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/monkeysphere-host b/src/monkeysphere-host index 12e7bad..d615230 100755 --- a/src/monkeysphere-host +++ b/src/monkeysphere-host @@ -268,7 +268,7 @@ multi_key() { for key in $keys ; do if (( i++ > 0 )) ; then - echo "##############################" + printf "\n" fi "$cmd" "$key" done @@ -309,8 +309,9 @@ show_key() { # FIXME: make no-show-keyring work so we don't have to do the grep'ing # FIXME: can we show uid validity somehow? gpg --list-keys --list-options show-unusable-uids "$fingerprint" 2>/dev/null \ - | grep -v "^${GNUPGHOME}/pubring.gpg$" \ - | egrep -v '^-+$' + | grep -v "^${GNUPGHOME}/pubring.gpg$" \ + | egrep -v '^-+$' \ + | grep -v '^$' # list revokers, if there are any revokers=$(gpg --list-keys --with-colons --fixed-list-mode "$fingerprint" \ @@ -320,7 +321,6 @@ show_key() { for key in $revokers ; do echo "revoker: $key" done - echo fi # list the pgp fingerprint |