5 lines
165 B
Bash
Executable file
5 lines
165 B
Bash
Executable file
#!/bin/env bash
|
|
|
|
# notmuch address "*" | awk -v term="$1" 'tolower($0) ~ tolower(term)'
|
|
notmuch address "*" | fzf --filter "$1"
|
|
# notmuch address "*" | grep -i "$1"
|