Re: Debugger question

2008-02-15 Thread Stephen Kratzer
On Friday 15 February 2008 11:18:26 ANJAN PURKAYASTHA wrote: > I have a simple script that I'm using to learn debugging: > #! /usr/bin/perl -w > > use strict; > use warnings; > > my $i= 0; > while ($i<= 15){ > print ("$i\n"); > $i++; > } > > Question: i would like to attach a breakpoint

Re: Debugger question

2008-02-15 Thread Menghan Zheng
Menghan Zheng 写道: type "watch $i==10" w $i==10 这两天用gdb很多,我把gdb的语法和perl的语法搞混了, sorry when $i is 10, the script pauses. ANJAN PURKAYASTHA 写道: I have a simple script that I'm using to learn debugging: #! /usr/bin/perl -w use strict; use warnings; my $i= 0; while ($i<= 15){ print ("$i\n");

Re: Debugger question

2008-02-15 Thread Menghan Zheng
type "watch $i==10" when $i is 10, the script pauses. ANJAN PURKAYASTHA 写道: I have a simple script that I'm using to learn debugging: #! /usr/bin/perl -w use strict; use warnings; my $i= 0; while ($i<= 15){ print ("$i\n"); $i++; } Question: i would like to attach a breakpoint in th

Debugger question

2008-02-15 Thread ANJAN PURKAYASTHA
I have a simple script that I'm using to learn debugging: #! /usr/bin/perl -w use strict; use warnings; my $i= 0; while ($i<= 15){ print ("$i\n"); $i++; } Question: i would like to attach a breakpoint in the program at the step at which $i takes on the value of 10. What command is us