this ought to let you look at files of any size, and i think the output format is just what you wanted.
#!/usr/bin/perl -w use strict; my $ext = '.log'; # extension to look for in filenames my $pat = 'bob'; # adjust to value to search for my $match; # track how many matches opendir(DH, '.') or die("CANT! $!"); # open directory foreach my $diritem ( readdir(DH) ) { # read directory next unless ( -f $diritem && # is it a file? $diritem =~ m/$ext$/ ); # does it end in $ext? open(FH, '<', $diritem) or die("CANT! $!"); # open the file for re +ading my @buffer; # buffer for previous lines push @buffer, scalar <FH> for 1 .. 3; # create three line bu +ffer while(<FH>) { # read the file line by line push @buffer, $_; # add line to end of buffer shift @buffer; # remove line from front of buff +er if( /$pat/ ) { # did i find the search pattern? $match++; # increment my match count # print fancy output, with # separator line, # match counter, filename, # two previous lines and matching line print "-----------------------------------------\n"; print "($match) From file $diritem\n"; print $buffer[0], $buffer[1], $buffer[2]; } # if } # while close FH; # close the file } # foreach
aah, that was a fun diversion! i searched for 'bob'. you might like to search for something more useful....

~Particle


In reply to Re: Newbie Text Parsing Question by particle
in thread Newbie Text Parsing Question by kanikilu

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.