- or download this
#/usr/bin/perl
# script 1
...
store \%eTAG, 'fileHash.dat';
exit 0;
- or download this
#!/usr/bin/perl
# Script #2
...
foreach $i (keys %eTAG) { print "$i\n"; }
exit 0;
- or download this
#/usr/bin/perl
# script 1 JSON version
...
open(OFIL,">fileHash.dat"); print OFIL $JSONdata; close(OFIL);
exit 0;
- or download this
#!/usr/bin/perl
# Script #2 JSON version
...
foreach $i (keys %eTAG) { print "$i $eTAG{$i}{'mpg'}\n"; }
exit 0;