Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com
Message-ID: <42183C6C.B0A3ADE9@dessent.net>
Date: Sat, 19 Feb 2005 23:29:48 -0800
From: Brian Dessent <brian@dessent.net>
Organization: My own little world...
MIME-Version: 1.0
To: cygwin@cygwin.com
Subject: Re: Grep for tab character
References: <opsmhbyxl1ov81ve@mail.optusnet.com.au> <20050220051340.GA30669@trixie.casa.cgf.cx> <opsmhebkrbov81ve@mail.optusnet.com.au>
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-IsSubscribed: yes
Reply-To: cygwin@cygwin.com

Robert Mark Bram wrote:

> > How about just using the actual tab character?  I don't see any
> > indication that
> > grep is supposed to treat '\t' specially and it seems to behave that way
> > on linux,
> > too.
> 
> I have read in many places that \t is a metacharacter for tab in regular
> expressions - but maybe that's only for sed, perl, awk etc...
> http://sitescooper.org/tao_regexps.html

Try "grep -P '\t'" to use perl-compatible regexps.  Note that this is a
specific capability of GNU grep, so it will not be portable to systems
that use a different grep.  It might be more portable to use "awk
'/\t/'".

Or <ctrl-v><tab> to insert a literal tab as others said.

Brian

--
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/

