zsh-users
 help / color / mirror / code / Atom feed
From: Chris Johnson <cjohnson@cs.utk.edu>
To: zzapper <david@tvis.co.uk>
Cc: zsh-users@sunsite.dk
Subject: Re: I want to list the NEXT line after a string appears in a list of files
Date: Fri, 1 Sep 2006 11:28:56 -0400	[thread overview]
Message-ID: <20060901152856.GA3545@cetus30.cs.utk.edu> (raw)
In-Reply-To: <Xns9831A29573C98zzappergmailcom@80.91.229.5>

zzapper sent me the following 0.3K:

> I want to list the NEXT line after a string appears in a list of files
> 
> eg 
> > egrep "Anecdote" m??.txt (But display next line)
> 
> I guess Sed/Awk would do this, I would probably use Perl.
> 
> Suggestions pls

cat file | awk 'BEGIN {print_next = 0;} {if (print_next) {print $0;
   print_next = 0;}} /PATTERN/ {print_next = 1;}'

Here's an awk solution.  If your line matches PATTERN, it sets a flag.
When the next record is read, the flag is evaluated.  If set, the record
is printed.

This solution allows for a single line to both be printed and match.

-- 
Chris Johnson
cjohnson@cs.utk.edu
http://www.cs.utk.edu/~cjohnson


  parent reply	other threads:[~2006-09-01 15:29 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-09-01 14:59 zzapper
2006-09-01 15:15 ` John Eikenberry
2006-09-02 13:59   ` zzapper
2006-09-01 15:15 ` Frank Terbeck
2006-09-02 18:41   ` zzapper
2006-09-01 15:27 ` Roman Cheplyaka
2006-09-01 15:36   ` zzapper
2006-09-01 15:28 ` Chris Johnson [this message]
2006-09-01 16:52 ` Marc Chantreux

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20060901152856.GA3545@cetus30.cs.utk.edu \
    --to=cjohnson@cs.utk.edu \
    --cc=david@tvis.co.uk \
    --cc=zsh-users@sunsite.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).