diff options
author | Samuel Fadel <samuel@nihil.ws> | 2023-02-13 10:45:57 +0100 |
---|---|---|
committer | Samuel Fadel <samuel@nihil.ws> | 2023-02-13 10:45:57 +0100 |
commit | 5f3200afd34b1b0ac0a809f3270e1117659957e5 (patch) | |
tree | 68b792fd397ec6ac3a039994f35dbdc73289f90e /bin/list-contacts | |
parent | e9cc14d5be2090a4272edc45f4c77c84dceb29d8 (diff) |
Split functionality of menu-contacts into separate script for CLI0.3
Diffstat (limited to 'bin/list-contacts')
-rwxr-xr-x | bin/list-contacts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bin/list-contacts b/bin/list-contacts new file mode 100755 index 0000000..1492773 --- /dev/null +++ b/bin/list-contacts @@ -0,0 +1,7 @@ +#!/bin/sh + +# Search in contact list built by khard, outputs the search results as +# NAME <ADDRESS> +khard email --remove-first-line --parsable $@ \ + | cut -f 1,2 \ + | awk -F "\t" '{printf "%s <%s>\n", $2, $1}' |