From e14a170d577783ba7365555cb464488c72f279ce Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 23 Apr 2014 18:58:11 +0200 Subject: grep: we need to not throw away the return value --- src/password-store.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/password-store.sh b/src/password-store.sh index 3ac0fb4..daadac2 100755 --- a/src/password-store.sh +++ b/src/password-store.sh @@ -366,9 +366,9 @@ cmd_grep() { exit 1 fi agent_check - local search="$1" passfile + local search="$1" passfile grepresults while read -r -d "" passfile; do - local grepresults="$(gpg -d $GPG_OPTS "$passfile" | grep --color=always "$search")" + grepresults="$(gpg -d $GPG_OPTS "$passfile" | grep --color=always "$search")" [ $? -ne 0 ] && continue passfile="${passfile%.gpg}" passfile="${passfile#$PREFIX/}" -- cgit v1.2.3-59-g8ed1b