in reply to Printing package information
I would trust Data::Dumper for this:
perl -MData::Dumper -e 'print Dumper %main::';or, for extra XML points (and ease of reprocessing the data):
perl -MData::DumpXML -e 'print Data::DumpXML::dump_xml( %main::)';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Pinting package information
by merlyn (Sage) on Jun 08, 2001 at 22:50 UTC |