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?
