in reply to Re: create separate output files based on the matched values
in thread create separate output files based on the matched values
You will loose everything but the first 2 columns. You should have used:my ($filename, $content) = split /\s+/;
my ($filename, $content) = split /\s+/,$_,2;
|
|---|