spm

Personal fork of spm (simple password manager)

commit 63b085977b8a23b95896cadf5ffca7c1532dd7f3
parent f920ab3f68ed69be61ced03ac5fc5dd0c92a6bb7
Author: realgeorgewashington <lsvvmszrobcipher10@gmail.com>
Date: Thu, 15 Apr 2021 10:53:20 -0700

update README, get rid of grep -G
2 files changed, 3 insertions(+), 1 deletion(-)
M
README.md
|
2
++
M
spm
|
2
+-
diff --git a/README.md b/README.md
@@ -13,6 +13,8 @@ flexible and powerful management tools.
 Refer to the manual page for various examples or read its source code to see
 how it works.
 
+This Fork aims to make it more POSIX compliant, without any major changes to the script.
+
 ----
 
 spm started as [tpm](https://github.com/nmeum/tpm) fork.
diff --git a/spm b/spm
@@ -56,7 +56,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 -ie "${1}"
 }
 
 munge() {