shellcheck fix after applying "more contacts" patch

This commit is contained in:
Maarten van Gompel 2020-11-01 18:17:33 +01:00
parent a537bea76a
commit 178c746d85

View file

@ -29,9 +29,9 @@ contacts() {
}
all_contacts() {
cat "$CONTACTSFILE" | awk -F'\t' '{
awk -F'\t' '{
if (substr($0,1,1) == "+") print $1 ": " $2
}' | sort -f -k 2
}' "$CONTACTSFILE" | sort -f -k 2
}
if [ "$1" = "--all" ]; then