Commit: e5e9f5387ecb152a8caa5464d86bf3ec6437bc80 Parent: ac2f4ada2b12f5d0a3db4547803ada318e981994 Author: Klemens Nanni Date: Thu, 23 Mar 2017 02:33:47 +0100 Drop obsolete parantheses in find() Diffstat:
M | spm.sh | | | 3 | +-- |
1 file changed, 1 insertion(+), 2 deletions(-)
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() {