in reply to Viewing perl execution line by line

PERLDB_OPTS="NonStop AutoTrace LineInfo=foo.trace" perl -d foo.pl
Contents of foo.pl:
print "foo\n"; print "bar\n";
Content of foo.trace:
main::(foo.pl:1): print "foo\n"; main::(foo.pl:2): print "bar\n"; Config::DESTROY(/usr/libdata/perl5/i386-openbsd/5.8.2/Config.pm:1265): 1265: sub DESTROY { } IO::Handle::DESTROY(/usr/libdata/perl5/i386-openbsd/5.8.2/IO/Handle.pm +:326): 326: sub DESTROY {}
See perldebug for more options.

Replies are listed 'Best First'.
Re^2: Viewing perl execution line by line
by jesuashok (Curate) on Dec 08, 2006 at 02:23 UTC
    thanks imp,

    PERLDB_OPTS="NonStop AutoTrace LineInfo=foo.trace" helped me. thanks again.