From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 68855 invoked by alias); 28 Jan 2017 12:21:33 -0000 Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Received: (qmail 68846 invoked by uid 89); 28 Jan 2017 12:21:32 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=mingw32-g, mingw32g, H*f:sk:CAJ1Fpu, H*MI:sk:CAJ1Fpu X-HELO: mail-oi0-f65.google.com Received: from mail-oi0-f65.google.com (HELO mail-oi0-f65.google.com) (209.85.218.65) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 28 Jan 2017 12:21:31 +0000 Received: by mail-oi0-f65.google.com with SMTP id w144so22548842oiw.1 for ; Sat, 28 Jan 2017 04:21:31 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:message-id:date:from:references:subject:to :user-agent; bh=Jh0kw1Y+rJTO4086NoXizKH5FaKHs/2sZMwj5khzrdw=; b=Jp+iFwZzpDOXPehI3yM8I5XpwyBE68gNnVsTkcTz+yhx8DHOWJLgPRCgz7LIj87ScJ ZGF78TmRVmMBavMiDPZOd2Hm02Cux5ek6hdtunMlxhRHJ2Yg4BLTnqCwTDXgnxjoNgeA aTgLNzmTCfPHf5le8QQTRiyLf7p0iLBjLY0IPDRLPkY3RxLoH9hgBwlN8YxUXsjwtiYM j75P8DN+NaTl+lthohSdGw2I7L7t1CasFodv/sgNbydHIP07FYApT7WRJdlXAdnEbV+N mOdVgCtlNUVkEupmvX6J4B8XtKy+XsfjCayxPAVqGh75LYCZ2cAsrkh/quPduuYiarJO o3Ng== X-Gm-Message-State: AIkVDXLcUVubhXUhYsAvRRBr4+YHaJVuE7v6XKEJaIbPJkZDDMJWDUNidx0Emi4iKnuMVg== X-Received: by 10.202.172.136 with SMTP id v130mr7716781oie.167.1485606089864; Sat, 28 Jan 2017 04:21:29 -0800 (PST) Received: from tmp.GoXEoFuCHN ([2605:6000:9fc0:56:811:343f:f904:d318]) by smtp.gmail.com with ESMTPSA id z34sm3937096ota.35.2017.01.28.04.21.28 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 28 Jan 2017 04:21:29 -0800 (PST) Message-ID: <588c8cc9.a5249d0a.d8d5b.49c2@mx.google.com> Date: Sat, 28 Jan 2017 12:21:00 -0000 From: Steven Penny X-Google-Original-From: Steven Penny References: Subject: Re: cygcheck and literal plus sign To: cygwin@cygwin.com User-Agent: mailing-list.awk 1.0.0 X-SW-Source: 2017-01/txt/msg00351.txt.bz2 On Fri, 27 Jan 2017 21:01:14, Doug Henderson wrote: > Try this: > $ cygcheck -p "mingw32-g[*-,][*-,]" > Found 4 matches for mingw32-g[*-,][*-,] Thanks for this. Using ranges is gross, because it relies on your locale, but it did put me on the right track: $ cygcheck -p 'mingw32-g[:punct:][:punct:]' | awk 'NR>1{$0=$1}1' Found 8 matches for mingw32-g[:punct:][:punct:] mingw64-i686-gcc-core-5.4.0-2 mingw64-i686-gcc-core-5.4.0-3 mingw64-i686-gcc-debuginfo-5.4.0-2 mingw64-i686-gcc-debuginfo-5.4.0-3 mingw64-x86_64-gcc-core-5.4.0-2 mingw64-x86_64-gcc-core-5.4.0-3 mingw64-x86_64-gcc-debuginfo-5.4.0-2 mingw64-x86_64-gcc-debuginfo-5.4.0-3 -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple