Created
March 31, 2018 14:01
-
-
Save inbasic/f8c0bd7f1066c785dba77645125c26e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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