Re: Perl debug

2003-06-20 Thread Peter Scott
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Jeff Westman) writes: >Peter- > >When I tried the 'y' command I got: > >DB<3> y @a >adWalker module not found - please install > > >What's that about?! There's a letter missing; it should have said PadWalker module not found - please in

Re: Perl debug

2003-06-19 Thread Jeff Westman
>On Wed, Jun 18, 2003 at 05:21:06PM -0700, sandip das wrote: > >> can anybody let me know how to print out values of > >> certain variables in "Perl Debug" mode while doing > >> single stepping ? > > > >Use 'p' or 'V'. >

Re: Perl debug

2003-06-19 Thread Peter Scott
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Steve Grazzini) writes: >On Wed, Jun 18, 2003 at 05:21:06PM -0700, sandip das wrote: >> can anybody let me know how to print out values of >> certain variables in "Perl Debug" mode while doing >> single

Re: Perl debug

2003-06-18 Thread Steve Grazzini
On Wed, Jun 18, 2003 at 05:21:06PM -0700, sandip das wrote: > can anybody let me know how to print out values of > certain variables in "Perl Debug" mode while doing > single stepping ? Use 'p' or 'V'. 'h' will give you the list of available

Perl debug

2003-06-18 Thread sandip das
Hi, can anybody let me know how to print out values of certain variables in "Perl Debug" mode while doing single stepping ? Sandip. __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com -- To unsubscribe, e-mail: [EMAIL

Re: Perl Debug Question

2002-03-26 Thread Peter Scott
At 03:47 PM 3/26/02 -0500, Nikola Janceski wrote: >2 questions actually. > >1. Is there a way to make the debugger display the next N lines of code at >each prompt (instead of just one). You would probably prefer to just hit 'w' or 'l' whenever you want to see more than one line. But... you can

Perl Debug Question

2002-03-26 Thread Nikola Janceski
2 questions actually. 1. Is there a way to make the debugger display the next N lines of code at each prompt (instead of just one). 2. What is the best way to avoid the loops on one line? I use c but I was hoping for a simpler solution. (ie. foreach my $line (map { stuff } @array){ ) Thanx Ni