- or download this
sub file_merge {
my $hash_ref = shift;
...
push @{$hash_ref->{$key}}, [ @values ];
}
}
- or download this
sub file_merge {
my $filename = shift;
...
return %hash;
}
- or download this
my %msisdn = file_merge('/tmp/subscription_list');
my %calls = file_merge('/tmp/Call_Det');