show/hide this revision's text 3 added 2 characters in body

Why not forgo the grep and awk and go straight to perlPerl?

Disclaimer: Have I have not checked if the following code compiles:

while (<STDIN>) {
    next unless /550/; # skips over the rest of the while loop
    my @fields = split;
    my $email = $fields[4];
    my $reason = join(' ', @fields[22..32]);
    ...
}

EDIT: See @dland's comment for a further optimisation :-)

Hope this helps?

show/hide this revision's text 2 added 66 characters in body

Why not forgo the grep and awk and go straight to perl?

Disclaimer: Have not checked if the following code compiles:

while (<STDIN>) {
    next unless /550/; # skips over the rest of the while loop
    my @fields = split;
    my $email = $fields[4];
    my $reason = join(' ', @fields[22..32]);
    ...
}

EDIT: See @dland's comment for a further optimisation :-)

Hope this helps?

show/hide this revision's text 1

Why not forgo the grep and awk and go straight to perl?

Disclaimer: Have not checked if the following code compiles:

while (<STDIN>) {
    next unless /550/; # skips over the rest of the while loop
    my @fields = split;
    my $email = $fields[4];
    my $reason = join(' ', @fields[22..32]);
    ...
}

Hope this helps?