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")

Replies are listed 'Best First'.
Re^3: Log File Parsing using "split"
by ruzam (Curate) on May 21, 2006 at 04:05 UTC
    Old Habit :)