From: Daniel Kahn Gillmor Date: Sun, 14 Mar 2010 14:07:46 +0000 (-0400) Subject: cleaning up monkeysphere-host show-key output X-Git-Tag: monkeysphere_0.29~14 X-Git-Url: https://codewiz.org/gitweb?p=monkeysphere.git;a=commitdiff_plain;h=733d920b94909b19022276f7288b70afa14713bd;ds=sidebyside cleaning up monkeysphere-host show-key output --- 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