From: Sebastian Spaeth Date: Tue, 18 May 2010 22:14:18 +0000 (-0700) Subject: A new howto document, as this is not really emacstips specific X-Git-Url: https://git.cworth.org/git?p=notmuch-wiki;a=commitdiff_plain;h=49550b8072d0ab354fc7fbe70ba03b79fb133021 A new howto document, as this is not really emacstips specific Signed-off-by: Sebastian Spaeth --- diff --git a/howto.mdwn b/howto.mdwn new file mode 100644 index 0000000..30e8134 --- /dev/null +++ b/howto.mdwn @@ -0,0 +1,13 @@ +[[!img notmuch-logo.png alt="Notmuch logo" class="left"]] +#How to... + +##.. print only filenames of a search + +Given you have the python bindings installed (or simply set your PYTHONPATH environment variable to point to the .../bindings/python directory), this script will print the filenames of a matching search: + + #!/usr/bin/env python + import sys + import notmuch + + q = notmuch.Database().create_query(" ".join(sys.argv[1:])) + for m in q.search_messages(): print m.get_filename()