in reply to Re: Hash File to Binary ?
in thread Hash File to Binary ?
roboticus thanks for explaining. That was helpful.
As you can see from my response below all im trying to do is use the command "store" on hash table that is stored in file.
what is the proper way to do this? Or how can I store my Dumper output in a variable properly.
tried this but didn't work where is my problem ?
#CODE1 $data = $xml->XMLin("output.xml"); my $hash_table = Dumper($data); store \%hash_table, 'binary_hash.txt';
#CODE2 $data = $xml->XMLin("output.xml"); print MYFILE Dumper($data); store MYFILE, 'binary_hash.txt';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Hash File to Binary ?
by roboticus (Chancellor) on Dec 12, 2013 at 14:58 UTC | |
by zak_s (Initiate) on Dec 12, 2013 at 15:45 UTC | |
|
Re^3: Hash File to Binary ?
by Anonymous Monk on Dec 12, 2013 at 15:04 UTC |