From 072dac54e94a3717971a1e854315edeaa5dbb9ad Mon Sep 17 00:00:00 2001 From: drduh Date: Mon, 11 Jul 2016 13:23:26 -0400 Subject: [PATCH] Undo match username to EOL: breaks read all pwds --- pwd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwd.sh b/pwd.sh index c9bf1f1..e547175 100755 --- a/pwd.sh +++ b/pwd.sh @@ -87,7 +87,7 @@ read_pass () { get_pass " Enter password to unlock ${safe}: " printf "\n\n" - decrypt ${password} ${safe} | grep " ${username}$" || fail "Decryption failed" + decrypt ${password} ${safe} | grep " ${username}" || fail "Decryption failed" }