http://qs1969.pair.com?node_id=550661


in reply to Re: Log File Parsing using "split"
in thread Log File Parsing using "split"

open (my $fh, ">> ${prefix}${thiscust}${suffix}")
Why do you concatenate the second and third arguments to open() into a string just so that perl can pull it appart again?

open (my $fh, '>>', "$prefix$thiscust$suffix")