Hi All,
My data structure is a hash of a hash of an array. I build it from an
input file by the following code. Could you help me write it back to an
output file, please?
# Code Begins
%data = ( );
open (IN, "in.txt") || die;
while (<IN>) {
chop;
($user_name, $file_name, $modified_by, $last_modified) = split ( " ",
$_ );
$data{$user_name}{$file_name} = [$modified_by, $last_modified];
}
close (IN);
# Code Ends
Thanks a lot for your attention. Your help will be appreciated so much.
Ahmed
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]