Hello,

I'm trying to do a simple equivalent of
grep -A1 -B1 'hello' file_name
in Perl. This basically prints the previous and the next line when the word 'hello' is found. I've done a super search and came up with the following links:

Grep - print matched line and next N lines
Emulating GNU grep -A and -B switches with perl

Both were created back in 2003 and I was wondering if there is now a more concise solution to this. I mean using the Linux 'grep' command, it is able to do it in one line which strikes me odd that it cannot be done in Perl in a concise manner.

Below is my code but again, I think it is too clunky and too long when compared to the Linux 'grep' command.
#!/usr/bin/perl use strict; my ($prev, $next); while (my $line = <DATA>) { if ( $next ) { print "$line"; $next = undef; } if ( $line =~ /hello/ ) { print "$prev" if defined( $prev ); print "$line"; $next++; } $prev = $line; } __DATA__ test1 test2 hello test3 test4
Thanks in advance.

In reply to Equivalent of Linux Grep Command by bichonfrise74

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.