notmuch-cmd.sh (125B)
1 #!/bin/bash 2 3 set -x 4 grep -i '^Message-id' | cut -d ' ' -f2 | tr -d '><' | while read l; 5 do 6 notmuch "$@" id:$l 7 done | less 8