Ask a Question related to PERL Beginners, Design and Development.
-
Eric Walker #1
debugger
Hello all,
When using the perl debugger, is there a way to load in the breakpoints
and watch variables that I want from a file. I am using it now and as I
am debugging I am finding problems but when I start the program over I
have to re-enter all my breakpoints and watch variables again. Can these
be listed in a file and then read by the debugger to ease the amount of
things to enter?
Thanks
Perlknucklehead
Eric Walker Guest
-
Debugger question ???
I am executing this command in the JS debugger for a PDF Form that is loaded and being displayed: saveAs("Z:\\Test.tif","com.adobe.acrobat.tiff");... -
can't connect in debugger
I'm using FlexBuilder 3 and the debugger used to work fine, but it stopped yesterday. Now whenever I try to start a program in the debugger, a... -
Debugger question
I was running the perl debugger with arguments "-d -e 1" to test a small program. When I assigned a value to the variable $foo, I could use it... -
Debugger not working
I'm running an ASP test site on XP Professional/IIS 5.1. The problem I'm having is that error messages are not being displayed. If I get a script... -
debugger for AIX
On Thu, 31 Jul 2003 20:25:54 +0300 "Geeco" <hey01@luukku.com> wrote: Hello, I've never used dbx, ddd. But I have some experience of using... -
Peter Scott #2
Re: debugger
In article <1071850572.1651.3.camel@ewalker-lnx>,
[email]ewalker@micron.com[/email] (Eric Walker) writes:This is why I added the 'source' command to the debugger in 5.8. You>Hello all,
>When using the perl debugger, is there a way to load in the breakpoints
>and watch variables that I want from a file. I am using it now and as I
>am debugging I am finding problems but when I start the program over I
>have to re-enter all my breakpoints and watch variables again. Can these
>be listed in a file and then read by the debugger to ease the amount of
>things to enter?
can put debugger commands for setting breakpoints or doing anything
else you like in a file and execute it whenever you like. Just list
the breakpoints and watchpoints and turn them into the appropriate
commands (a simple script will automate that if you need).
--
Peter Scott
[url]http://www.perldebugged.com/[/url]
*** NEW *** http//www.perlmedic.com/
Peter Scott Guest
-
Jeff Westman #3
Re: debugger
zentara <zentara@highstream.net> wrote:
The GUI/Tk interface is superb .... check it out.> On 19 Dec 2003 09:16:10 -0700, [email]ewalker@micron.com[/email] (Eric Walker) wrote:
>>> >Hello all,
> >When using the perl debugger, is there a way to load in the breakpoints
> >and watch variables that I want from a file. I am using it now and as I
> >am debugging I am finding problems but when I start the program over I
> >have to re-enter all my breakpoints and watch variables again. Can these
> >be listed in a file and then read by the debugger to ease the amount of
> >things to enter?
> I know you are asking about the perl debugger, but the Tk version
> ptkdb has menu item for "saving settings" for the script, which save
> all breakpoints and watched variables.
If you don't have access to that (or can't install it like I can't [yes, even
in my own HOME directory]), you can always save your breakpoints and watches
to a plain text file, such as
b 84
b 192
W $line
W %custRec
then just use good ol' fashioned cut/paste once you enter the line mode of the
debugger....
-Jeff
__________________________________
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing.
[url]http://photos.yahoo.com/[/url]
Jeff Westman Guest



Reply With Quote

