delorie.com/archives/browse.cgi | search |
X-Spam-Check-By: | sourceware.org |
Message-ID: | <45894FF0.1020800@yandex.ru> |
Date: | Wed, 20 Dec 2006 10:00:00 -0500 |
From: | Boris Toloknov <tlknv AT yandex DOT ru> |
User-Agent: | Thunderbird 1.5.0.7 (Windows/20060909) |
MIME-Version: | 1.0 |
To: | Eric Blake <ebb9 AT byu DOT net> |
CC: | cygwin AT cygwin DOT com |
Subject: | Re: Bash regular expressions |
References: | <45884F6E DOT 5070701 AT yandex DOT ru> <4588BC85 DOT 2090902 AT byu DOT net> |
In-Reply-To: | <4588BC85.2090902@byu.net> |
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 |
I tried: [[ abc =~ a.*c ]] && echo It works It doesn't work too. I did't try bash from gnu.org yet but debian bash (version 3.1.0(1)) works with and without quotes. Boris Eric Blake wrote: > 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. > -- 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 |