in reply to Re: Perl Debugger: setting a breakpoint in another file with 'b'
in thread Perl Debugger: setting a breakpoint in another file with 'b'
lanx@lanx-1005HA:~$ perl -de0 Loading DB routines from perl5db.pl version 1.33 Editor support available. Enter h or `h h' for help, or `man perldebug' for more help. main::(-e:1): 0 DB<1> h b b Sets breakpoint on current line) b [line] [condition] Set breakpoint; line defaults to the current execution line; condition breaks if it evaluates to true, defaults to '1'. b subname [condition] Set breakpoint at first line of subroutine. b $var Set breakpoint at first line of subroutine referenced by + $var. b load filename Set breakpoint on 'require'ing the given file. b postpone subname [condition] Set breakpoint at first line of subroutine after it is compiled. b compile subname Stop after the subroutine is compiled. DB<2>
see also perldebug
Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
Je suis Charlie!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Perl Debugger: setting a breakpoint in another file with 'b'
by Dumu (Monk) on May 18, 2015 at 13:53 UTC | |
|
Re^3: Perl Debugger: setting a breakpoint in another file with 'b'
by Dumu (Monk) on May 18, 2015 at 13:49 UTC |