I've got a Perl script, let's call it A.pl
where the first two lines look something like this:
require 'B.pl';
require 'C.pl';
Where both B.pl
and C.pl
each have their own cavalcade of requires. I need to set a breakpoint on a specific line of C.pl
. In GDB I'd do something like:
b C.pl:830
However that doesn't seem to work at all here. Is it possible? Am I close?