delorie.com/archives/browse.cgi | search |
X-Spam-Check-By: | sourceware.org |
Message-ID: | <4588BC85.2090902@byu.net> |
Date: | Tue, 19 Dec 2006 21:31:01 -0700 |
From: | Eric Blake <ebb9 AT byu DOT net> |
User-Agent: | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.8) Gecko/20061025 Thunderbird/1.5.0.8 Mnenhy/0.7.4.666 |
MIME-Version: | 1.0 |
To: | cygwin AT cygwin DOT com, tlknv AT yandex DOT ru |
Subject: | Re: Bash regular expressions |
References: | <45884F6E DOT 5070701 AT yandex DOT ru> |
In-Reply-To: | <45884F6E.5070701@yandex.ru> |
X-IsSubscribed: | yes |
Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
List-Id: | <cygwin.cygwin.com> |
List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
List-Archive: | <http://sourceware.org/ml/cygwin/> |
List-Post: | <mailto:cygwin AT cygwin DOT com> |
List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
Sender: | cygwin-owner AT cygwin DOT com |
Mail-Followup-To: | cygwin AT cygwin DOT com |
Delivered-To: | mailing list cygwin AT cygwin DOT com |
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 According to Boris Toloknov on 12/19/2006 1:45 PM: > It seems that regular expressions [[ str =~ regex ]] do not work in bash. > For example the following expression doesn't match: > [[ abc =~ 'a.*c' ]] && echo It works In bash 3.2, the [[ ]] quoting rules changed slightly. Since [[ already introduces special quoting rules, single quotes are not required; the regex is already protected by the shell from globbing. Try this instead: [[ abc =~ a.*c ]] && echo It works And since none of this is cygwin specific, you should report this upstream to bug-bash AT gnu DOT org if you think it is a bug. - -- Life is short - so eat dessert first! Eric Blake ebb9 AT byu DOT net volunteer cygwin bash maintainer -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFiLyF84KuGfSFAYARAu7bAJ42hoIBrYlVcSSwuEBwJnR5e/76igCgssfc 90J7OeEP6WFgMAWCZeBFfoY= =0VhV -----END PGP SIGNATURE----- -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |