This is the mail archive of the
cygwin
mailing list for the Cygwin project.
Re: Bash regular expressions
- From: Eric Blake <ebb9 at byu dot net>
- To: cygwin at cygwin dot com, tlknv at yandex dot ru
- Date: Tue, 19 Dec 2006 21:31:01 -0700
- Subject: Re: Bash regular expressions
- References: <45884F6E.5070701@yandex.ru>
-----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@byu.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/