Skip to content

Instantly share code, notes, and snippets.

@inbasic
Created March 31, 2018 14:01
Show Gist options
  • Save inbasic/f8c0bd7f1066c785dba77645125c26e1 to your computer and use it in GitHub Desktop.
Save inbasic/f8c0bd7f1066c785dba77645125c26e1 to your computer and use it in GitHub Desktop.
#!/bin/bash
if [[ $# -eq 0 ]] ; then
echo 'no input query' >&2
exit 1
fi
/usr/local/bin/notmuch tag -unread $*
/usr/local/bin/notmuch search --output=files $* | xargs -I % sh -c 'mv % /Volumes/emails/archive/offline/archive.2018.02/cur/'
/usr/local/bin/notmuch new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment