Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Debugger Tutorials

by VSarkiss (Monsignor)
on Jun 14, 2001 at 00:01 UTC ( [id://88193]=note: print w/replies, xml ) Need Help??


in reply to Debugger Tutorials

I echo bikeNomad's recommendation of the Linux Journal article (I don't think the Monastery's article is as good. YMMV).

What really made me start making better use of the debugger is Effective Perl Programming by Hall and Schwartz. One of their recommendations I liked best was to use the debugger as an interactive Perl environment. That is, just type: perl -d -e 0 and any Perl you enter at the prompt will be executed. Combine this with the debugger's x command, and you have a nice way of, for example, analyzing data structures.

Don't be overwhelmed by the ton of commands that appear in the help. I hardly ever use more than these:

  • x: nicely formatted display of any variable: scalar, array, or hash
  • p: print the argument, like the built-in
  • w: show a 10-line window around the current line.
  • s and n: step the program, optionally stepping over an entire sub
  • b: break execution at line
  • c: continue executing until reaching line
  • q: quit (kinda necessary, that one)
As others have pointed out in this thread, it won't help if your program won't compile. But that's true of debuggers for any compiled language.

HTH

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://88193]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (3)
As of 2024-04-26 06:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found