in reply to Interactive scripting with debugger
There's sure no better way to "become one" with a program, putting yourself "in its shoes" than running it inside an interactive debugger.
You might also like these tips and tricks;
If you do this, the emacs debugger will correctly step through the right source files. Sadly, though, the old perl5db.pl interactive debugger doesn't actually display the source properly.sub some_auto_generated_function { my $self = shift; # line 1 "some/preprocessedfile.foo" print $self->frop; # line 7 "originalfile.pm" }
$h=$ENV{HOME};my@q=split/\n\n/,`cat $h/.quotes`;$s="$h/." ."signature";$t=`cat $s`;print$t,"\n",$q[rand($#q)],"\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Interactive scripting with DB
by tlm (Prior) on May 26, 2005 at 03:42 UTC |