On Sun, Sep 28, 2008 at 2:42 AM, Jenda Krynicky <[EMAIL PROTECTED]> wrote: > From: oldyork90 <[EMAIL PROTECTED]> >> Is there a way to dump the name space; show all var names and values? > > print Dumper(\%main::);
Not so right. This can only dump the package variables, not a my variable. # perl -MData::Dumper -e '$test=123;print Dumper \%::' |grep test 'test' => *::test, # perl -MData::Dumper -e 'my $test=123;print Dumper \%::' |grep test [nothing] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/