bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Cygwin awk & metacharacter


From: Bob Proulx
Subject: Re: Cygwin awk & metacharacter
Date: Sun, 12 Sep 2004 19:07:41 -0600
User-agent: Mutt/1.3.28i

Gilles DRIDI wrote:
> I've problem with awk under cygwin.
> How to enter a [ in a regular expression ?
> I've try \[ but it recognized always as [

Normally I would suggest quoting the metacharacter with a backslash.
But if there are layers of things processing those then it can be
confusing to know exactly how many backslashes to use since easy layer
of processing needs one.  So here I will suggest putting it in []
brackets.  Characters lose their special nature inside of a character
class.  Here is an example using a unix shell.

  echo [ | awk '/[[]/'
  [

Bob




reply via email to

[Prev in Thread] Current Thread [Next in Thread]