in reply to Re^2: Can't seem to read DBM
in thread Can't seem to read DBM
You don't have any trailing spaces on your keys, do you? You might try modifying your dump to something like:
or use Data::Dumper or some such...while(my ($key, $value) = each(%names)) { print ".$key.\t".$names{$key}."\n"; }
...roboticus
|
|---|