in reply to Re^5: Using grep to pick out Specific lines in a text file
in thread Using grep to pick out Specific lines in a text file

That is what i thought but i was working with it and cuold not make it produce what i wanted

  • Comment on Re^6: Using grep to pick out Specific lines in a text file

Replies are listed 'Best First'.
Re^7: Using grep to pick out Specific lines in a text file
by hdb (Monsignor) on Apr 18, 2013 at 06:49 UTC

    Instead of

    print join( "|", keys %found), "\n";

    try

    for my $key (keys %found) ( print "$key: $found{$key}\n"; }

      added that and it comes back blank

        There is a ( where it should be a {.