mybin

my ~/bin
git clone https://a3nm.net/git/mybin/
Log | Files | Refs | README

notmuch-cmd-bg.sh (149B)


      1 #!/bin/bash
      2 
      3 set -x
      4 grep -i '^Message-id' | cut -d ' ' -f2 | tr -d '><' | while read l;
      5 do
      6   nohup notmuch "$@" id:$l >/dev/null 2>/dev/null &
      7 done
      8