From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS3215 2.0.0.0/16 X-Spam-Status: No, score=-3.3 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_HI,SPF_HELO_NONE, SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from out2.migadu.com (out2.migadu.com [IPv6:2001:41d0:2:aacc::]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 39B081FA17 for ; Tue, 4 May 2021 04:46:18 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kyleam.com; s=key1; t=1620103576; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=7lgoe61E6EB/ze2+VQ8Pe5HE2QefSH/WYziEmffrO3w=; b=jigrr4GTrG2PbqgTPh2ZUCGhOtNCMxCO6HctEm5GhxSErA5iUootf2B/JG9UX9YzymkBjS muNBVkEWD4V0dIC66bkgLvcAdH2/SaR1h02ZCgxtGAkqM1bYb2Ct8xD0g3RMHA0VPSU98h cSeUvdC3VfiNVCYfn0Zl42YK6dvMWXUgAsA1zSXFjOeseczu4UyvrjDXnm2dIITxgMe+gb 7CAwUBU72jTjDxXAk6OmpHnf/cC/6Hd5kYAPcPjy8zdLux4O6Bqo+NVdeK/uSCfexVQzhA bYwpdi1LjH+sqDU7Ih5FgZ9JtrhL8ul5TmMzL4rZ6sYe5ytUbhcWXTvEyZO6kg== From: Kyle Meyer To: meta@public-inbox.org Subject: [PATCH 5/5] lei: add help output for --invert match Date: Tue, 4 May 2021 00:45:59 -0400 Message-Id: <20210504044559.12941-6-kyle@kyleam.com> In-Reply-To: <20210504044559.12941-1-kyle@kyleam.com> References: <20210504044559.12941-1-kyle@kyleam.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: kyle@kyleam.com List-Id: ls-external and ls-mail-sync accept an --invert-match option. Show it in the --help output. --- lib/PublicInbox/LEI.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/PublicInbox/LEI.pm b/lib/PublicInbox/LEI.pm index 7be68121..c5fdfeb8 100644 --- a/lib/PublicInbox/LEI.pm +++ b/lib/PublicInbox/LEI.pm @@ -270,6 +270,7 @@ my %OPTDESC = ( 'incremental! import' => 'import already seen IMAP and NNTP articles', 'globoff|g' => "do not match locations using '*?' wildcards ". "and\xa0'[]'\x{a0}ranges", +'invert-match|v' => 'select non-matching lines', 'color!' => 'disable color (for --format=text)', 'verbose|v+' => 'be more verbose', 'external!' => 'do not use externals', -- 2.31.1