This will read 6 lines, then let you do something else then return to reading another 6 lines until the end of the file. (start up code and Template code omited as the former is not changed and I don't know any thing about the latter =)
... until (eof(FH)) { for my $i (1..6) { my $line = <FH>; last unless defined $line; chomp $line; redo if ($line =~ /^\s*(?:#|$)/); if ($line=~m#(map|reverse_map)\s+(\w+)://(\S*?)\s+(\2)://(\S*? +)$#) { $vars{'d'} = $.; $vars{'map'} = $1; $vars{'proto'} = $2; $vars{'uri1'} = $3; $vars{'uri2'} = $4; } } #do some thing with $vars before here. #6 lines (or as many as remained in the file) will have been read +at this point }

In reply to Re: Reading in N lines at a time by Ven'Tatsu
in thread Reading in N lines at a time by Tuna

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.