in reply to Data::Dumper Retrieval?

Given a a file containing Data::Dumper output you can just get back your data with a simple do()
my $data = do "somefile.dump";
Although this won't work with multiple structures in the file as it only returns the last thing evaluated.
HTH

_________
broquaint