aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--man/pass.14
-rwxr-xr-xsrc/password-store.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/man/pass.1 b/man/pass.1
index a65861a..b17acd9 100644
--- a/man/pass.1
+++ b/man/pass.1
@@ -65,8 +65,8 @@ program. This command is alternatively named \fBlist\fP.
.TP
\fBshow\fP [ \fI--clip\fP, \fI-c\fP ] \fIpass-name\fP
Decrypt and print a password named \fIpass-name\fP. If \fI--clip\fP or \fI-c\fP
-is specified, do not print the password but instead copy it to the clipboard
-using
+is specified, do not print the password but instead copy the first line to the
+clipboard using
.BR xclip (1)
and then restore the clipboard after 45 seconds.
.TP
diff --git a/src/password-store.sh b/src/password-store.sh
index e22e8c9..2e1d14b 100755
--- a/src/password-store.sh
+++ b/src/password-store.sh
@@ -134,7 +134,7 @@ case "$command" in
if [ $clip -eq 0 ]; then
exec gpg -q -d "$passfile"
else
- clip "$(gpg -q -d "$passfile")" "$path"
+ clip "$(gpg -q -d "$passfile" | head -n 1)" "$path"
fi
fi
;;