All that typing though! And I thought perl programmers were supposed to be lazy :-) I might have done it like this:
#!/usr/bin/perl -n -l print join(' ', $i++, (split)[1,3,4,11,13]) if / physio_start /;
The only difference is that his line counter starts at zero, and $. will start at one, which may or may not matter. And his explicitly opening $ARGV[0] is a bit different than using <> (albeit implicitly) here. And using explicit variables (as he does) documents what they are a bit better than using an anonymous array (like I have here), but if that's a concern, I might cut n paste a short description of all the fields (whether I use'em or not) into a comment line.

Update:Fixed a bug, he was counting output rows, not input records, so nevermind about $. :-)

------------
ooo  O\O  ooo tilly was here :,(

In reply to Re: Perl Article on O'Reilly by runrig
in thread Perl Article on O'Reilly by TStanley

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.