From: Jani Nikula Date: Tue, 26 Mar 2013 20:05:12 +0000 (+0200) Subject: Re: [PATCH v2 3/6] cli: add --batch option to notmuch count X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=927a0313909ef7b4711a9bc6efc25ab2260faf3a;p=notmuch-archives.git Re: [PATCH v2 3/6] cli: add --batch option to notmuch count --- diff --git a/52/7182b47b86f3e3b4c476933b7f0fc25eba7419 b/52/7182b47b86f3e3b4c476933b7f0fc25eba7419 new file mode 100644 index 000000000..c5dfc908f --- /dev/null +++ b/52/7182b47b86f3e3b4c476933b7f0fc25eba7419 @@ -0,0 +1,82 @@ +Return-Path: +X-Original-To: notmuch@notmuchmail.org +Delivered-To: notmuch@notmuchmail.org +Received: from localhost (localhost [127.0.0.1]) + by olra.theworths.org (Postfix) with ESMTP id 744DB40EC46 + for ; Tue, 26 Mar 2013 13:05:19 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: -0.7 +X-Spam-Level: +X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 + tests=[RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled +Received: from olra.theworths.org ([127.0.0.1]) + by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id F3+cWzp88KiK for ; + Tue, 26 Mar 2013 13:05:15 -0700 (PDT) +Received: from mail-la0-f45.google.com (mail-la0-f45.google.com + [209.85.215.45]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 68A7940EC41 + for ; Tue, 26 Mar 2013 13:05:15 -0700 (PDT) +Received: by mail-la0-f45.google.com with SMTP id er20so14384972lab.18 + for ; Tue, 26 Mar 2013 13:05:13 -0700 (PDT) +X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; + d=google.com; s=20120113; + h=x-received:from:to:subject:in-reply-to:references:user-agent:date + :message-id:mime-version:content-type:x-gm-message-state; + bh=lkwTI8bjTZDs3F2Wc39mUDXB/s4pcdOzl7wcva7Qwkg=; + b=TkmEIWRcGVGthM8zoNJBuZUjAHGix0HcXcvH3P5wGDZz2oiHWG2RmLlK+RfAvbIvBN + ZGnROrSHBGcxdSpCWD2Pc4Ud3/m4CJsd0CaS/fUCa1k6LpbYUTZuAJZSOeYJQDv33rNT + a0+XseP4O7EXZNnduwplxB+/2alEem3HbtzvTY8Vx70j0Cme3eVEW84IIPx664/3QJUt + VKHzGt2sKimM7wfrUbWOnoAC/uq8fOFkwi/9tzU7ajfAkz4btyqi+KJ8YC5zms8X6460 + EG5zpuxJlIEpxmGNI0qyswh5K3M8n4xo88nSe0M1Zb/5pi1Fcp2hYGLrLce0V95hQe0l + uG3Q== +X-Received: by 10.152.87.243 with SMTP id bb19mr7082020lab.12.1364328313651; + Tue, 26 Mar 2013 13:05:13 -0700 (PDT) +Received: from localhost (dsl-hkibrasgw4-50df51-27.dhcp.inet.fi. + [80.223.81.27]) + by mx.google.com with ESMTPS id nv3sm4986390lbb.15.2013.03.26.13.05.11 + (version=TLSv1.2 cipher=RC4-SHA bits=128/128); + Tue, 26 Mar 2013 13:05:12 -0700 (PDT) +From: Jani Nikula +To: Jameson Graef Rollins , + notmuch@notmuchmail.org +Subject: Re: [PATCH v2 3/6] cli: add --batch option to notmuch count +In-Reply-To: <877gl0zxk2.fsf@servo.finestructure.net> +References: + + <877gl0zxk2.fsf@servo.finestructure.net> +User-Agent: Notmuch/0.15.2+48~gc5630bf (http://notmuchmail.org) Emacs/24.2.1 + (x86_64-pc-linux-gnu) +Date: Tue, 26 Mar 2013 22:05:12 +0200 +Message-ID: <87txny2ah3.fsf@nikula.org> +MIME-Version: 1.0 +Content-Type: text/plain +X-Gm-Message-State: + ALoCoQkbdQ2udtzax26aVg9SYwDMakBEy8oksT4i2owKFoNMWqNqmg2LRLZbAz/iYxP7OBKmngKx +X-BeenThere: notmuch@notmuchmail.org +X-Mailman-Version: 2.1.13 +Precedence: list +List-Id: "Use and development of the notmuch mail system." + +List-Unsubscribe: , + +List-Archive: +List-Post: +List-Help: +List-Subscribe: , + +X-List-Received-Date: Tue, 26 Mar 2013 20:05:19 -0000 + +On Thu, 21 Mar 2013, Jameson Graef Rollins wrote: +> On Sat, Mar 09 2013, Jani Nikula wrote: +>> Add support for reading queries from stdin, one per line, and writing +>> results to stdin, one per line. +> +> I assume this is meant to be "to stdout". + +Oops, I got that comment the last time too. :( + +BR, +Jani.