summaryrefslogtreecommitdiffhomepage
path: root/bin/notmuch-delete.sh
blob: fc230a5911c7ad04601305a4d4ca49f44ad8a089 (plain)
1
2
3
4
5
6
#!/bin/bash
# [[file:../mail.org::*delete shell script][delete shell script:1]]
echo "Deleting $(notmuch count tag:deleted) files"
notmuch search --output=files --format=text0 tag:deleted | xargs -r0 rm
notmuch new 2>&1
# delete shell script:1 ends here