From 3687ffacd4248bfb2ae7737f5251f91e08509706 Mon Sep 17 00:00:00 2001 From: Stacy Harper Date: Sat, 15 May 2021 17:41:02 +0200 Subject: [PATCH] sxmo_contacts now can search a contact --- scripts/core/sxmo_contacts.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/core/sxmo_contacts.sh b/scripts/core/sxmo_contacts.sh index 6094fa8..b4eb954 100755 --- a/scripts/core/sxmo_contacts.sh +++ b/scripts/core/sxmo_contacts.sh @@ -65,6 +65,8 @@ elif [ "$1" = "--texted" ]; then texted_contacts elif [ "$1" = "--called" ]; then called_contacts +elif [ -n "$*" ]; then + all_contacts | grep -i "$*" else contacts fi