in reply to How to track variable usage in a script?

I realize you said you were a novice, so the other monks that have answered your question may have you going in the right direction. However, as a novice, if you're trying to learn what these programs are doing, and follow how the variables are changing, then the debugger is definitely the way to go.

I would recommend the GUI based Perl debugger for doing what you're after. You can find it here. Do realize that it's only going to process one program at a time, but it will allow you to watch all the variables, how they change, and hopefully allow you to follow the program flow and what's going on.

Hope that helps!

There is no emoticon for what I'm feeling now.

  • Comment on Re: How to track variable usage in a script?

Replies are listed 'Best First'.
Re: Re: How to track variable usage in a script?
by Scarborough (Hermit) on Mar 23, 2004 at 09:21 UTC
    Thanks I think this is what I could be looking for.