I need to parse through millions of lines of dataand parse them into smaller files. The original data is all mixed up and I might need to write to file A once or hundreds of times.
Instead of opening/closing every file handle I thought I'd open it up if needed, mark it in an hash to I know it's already open and close all of them when I'm done. The problem is I'm not doing something right or I wouldn't be posting
Basically every line in my data has a number in it and I'd like to somehow associate that number to a filehandle.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
![[noevil] [noevil] [noevil]](/data/assets/smilies/noevil.gif)
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
Instead of opening/closing every file handle I thought I'd open it up if needed, mark it in an hash to I know it's already open and close all of them when I'm done. The problem is I'm not doing something right or I wouldn't be posting
Code:
my %fileopen;
my @data= qw(1 2 3 4 5 6 7 8 9);
for my $data (@data) {
if (! defined($fileopen{$data}){
open($data, ">>$data.log");
}
print $data "$data\n";
}
for my $key (keys %data) {
close($key);
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
![[noevil] [noevil] [noevil]](/data/assets/smilies/noevil.gif)
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;