in reply to Re: Dump of all defined variables for debugging
in thread Dump of all defined variables for debugging

Excellent.. Devel::Symdump gives me the list of variables. Unfortunately I'm having problems feeding that list into Data::Dumper so I can actually see the elements of all the variables.

Know any tricks to this? If not my alternative may just be to do it the hard ware and manually input all of the defined variables.

  • Comment on Re^2: Dump of all defined variables for debugging

Replies are listed 'Best First'.
Re^3: Dump of all defined variables for debugging
by blahblahblah (Priest) on Feb 22, 2006 at 04:41 UTC
    Here's some old code that might help: %main:: and my'd vars
    It walks through the %main:: symbol table and uses Data::Dumper to print out all arrays, hashes, scalars, and sub names.

    -Joe