I am experimenting with the .perldb
rc file and trying to set a breakpoint. Here is a small sample script that I use for testing (p.pl):
use feature qw(say);
use strict;
use warnings;
say "Line 5";
say "Line 6";
say "Line 7";
Then, I created the following .perldb
file in the current directory:
parse_options("NonStop=1");
sub afterinit { push @DB::typeahead, "b 7" }
(Note that this file should not have write permission by other than yourself (i.e. : chmod 644 .perldb
) or else the debugger will not load it). Then I run the script under the debugger:
$ perl -d p.pl
Line 5
Line 6
Line 7
As seen the breakpoint at line 7 is not respected. What can be the problem here?
Changing your ".perldb-File" to
should do the job.