- or download this
my $files = {
filename1 => {
...
| and so on...
}
}
- or download this
foreach my $file ( keys %$files ){
foreach my $field ( keys %{$files->{$file}}{
|
do something here
|
- or download this
package MyDataFile;
...
1;
- or download this
use strict;
use MyDataFile;
...
|
etc.
|