Converting the steps from a shell pipeline to Perl is fairly easy. The steps are:

  1. grep Acct: Facs_Data.txt - Read a file line by line and select the lines matching Acct:
  2. cut -d":" -f2 - Take the side to the right of : of the line
  3. cut -d" " -f1 - take the side to the left of the blank of the line

If we convert each step to Perl, we get the following parts:

  1. my $filename = 'Facs_Data.txt'; open my $fh, '<', $filename or die "Couldn't open '$filename': $!"; my @lines = grep { /Acct:/ } <$fh>; # Read a file line by line and sel +ect the lines matching Acct:
  2. @lines = map { [ split $_, /:/ ]->[1] } @lines; # Take the side to the + right of : of the line
  3. @lines = map { [ split $_, /:/ ]->[0] } @lines; # take the side to the + left of the blank of the line

But a more perlish approach would be to do all that in one go:

my $filename = 'Facs_Data.txt'; open my $fh, '<', $filename or die "Couldn't open '$filename': $!"; my @lines = map { /:([^\s]+)/ ? $1 : () } # take the stuff between th +e : and the first blank grep { /Acct:/ } <$fh>; # Read a file line by line and sel +ect the lines matching Acct: # do whatever with the values in @lines print "$_\n" for @lines;

Update:: Fixed missing = in step three, spotted by AnomalousMonk, thanks.


In reply to Re: How do I use grep in a script by Corion
in thread How do I use grep in a script by Flintlock

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.