in reply to Re^2: Hash w/ multiple values + merging
in thread Hash w/ multiple values + merging
- Second, I failed at printing out once again. I used this one: print Data::Dumper->Dump([\%data],['MERGED HASH']),"\n"; How can I print the merged hash into an output file? I though of, again, the familiar structure, but it did not work.my $data1 = $ARGV[0]; my $data2 = $ARGV[1]; my $data3 = $ARGV[2];
Is it the reference again?open(FILE3, ">$ARGV[2]"); {print Data::Dumper->Dump([\%data],['MERGED HASH']),"\n";}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Hash w/ multiple values + merging
by GrandFather (Saint) on Feb 08, 2010 at 00:18 UTC | |
by sophix (Sexton) on Feb 08, 2010 at 01:08 UTC | |
by GrandFather (Saint) on Feb 08, 2010 at 01:17 UTC | |
by sophix (Sexton) on Feb 08, 2010 at 01:40 UTC | |
by sophix (Sexton) on Feb 08, 2010 at 02:52 UTC | |
by sophix (Sexton) on Feb 08, 2010 at 00:41 UTC |