X-Spam-Check-By: sourceware.org
To: cygwin@cygwin.com
From: Chuck <skilover@bluebottle.com>
Subject:  Re: grep and words
Date:  Wed, 12 Jul 2006 09:34:37 -0400
Lines: 16
Message-ID: <e92tpd$jfo$1@sea.gmane.org>
References:  <5284068.post@talk.nabble.com>
Mime-Version:  1.0
Content-Type:  text/plain; charset=ISO-8859-1
Content-Transfer-Encoding:  7bit
User-Agent: Thunderbird 1.5.0.4 (Windows/20060516)
In-Reply-To: <5284068.post@talk.nabble.com>
X-IsSubscribed: yes
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@cygwin.com>
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

prz wrote:
> another question from newbie ..
> is it possible with grep to select only the rows where the second word
> applies, because the pattern can occur at different places like :
> row 1 : xxxx yyyy zzz
> row 2 : yyyy xxxx zzz
> I need only the row where word 2 = yyyy
> grep yyyy would also return row 2
> Thanks for all info
> Best Regards, Guy Przytula

Ditto that this is not a cygwin question per say.

I would use awk.

awk '$2 = "yyyy"' filename


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

