rice

personal dot files and scripts for linux and macOS
Log | Files | Refs | README | LICENSE

notmuch_delete (209B)


      1 #!/bin/sh -e
      2 
      3 archive() {
      4     mv -f $1 $HOME/mail/archive/
      5 }
      6 
      7 notmuch search --output=files tag:deleted | tr '\n' '\0' | xargs -0 -L 1 rm
      8 notmuch search --output=files tag:archived | xargs archive
      9 notmuch new