From 54f3332dea450758e0ad936dc24fc32f133959e9 Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Mon, 7 Dec 2020 23:23:11 +0100 Subject: [PATCH] full contact list (--all) now also includes short/special numbers #104 --- scripts/core/sxmo_contacts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/core/sxmo_contacts.sh b/scripts/core/sxmo_contacts.sh index 55f3509..ce66582 100755 --- a/scripts/core/sxmo_contacts.sh +++ b/scripts/core/sxmo_contacts.sh @@ -31,7 +31,7 @@ contacts() { all_contacts() { awk -F'\t' '{ - if (substr($0,1,1) == "+") print $1 ": " $2 + print $1 ": " $2 }' "$CONTACTSFILE" | sort -f -k 2 }