spm

Personal fork of spm (simple password manager)

commit e5e9f5387ecb152a8caa5464d86bf3ec6437bc80
parent ac2f4ada2b12f5d0a3db4547803ada318e981994
Author: Klemens Nanni <kl3@posteo.org>
Date: Thu, 23 Mar 2017 02:33:47 +0100

Drop obsolete parantheses in find()
1 file changed, 1 insertion(+), 2 deletions(-)
M
spm.sh
|
3
+--
diff --git a/spm.sh b/spm.sh
@@ -55,8 +55,7 @@ readpw() {
 }
 
 find() {
-	command find "${STORE_DIR}" \( -type f -o -type l \) |
-		grep -Gie "${1}"
+	command find "${STORE_DIR}" -type f -o -type l | grep -Gie "${1}"
 }
 
 view() {