At 12:27 PM 8/13/01 -0700, Jeff Friesen wrote:
>Does any one know of something similar to "set echo verbose" (a unix
>shell-scripting command) in perl? I know there are many other debugging
>techniques out there, and I think I have tried them all, but sometimes it
>would
>be really convenient for debugging. Another application is sending the output
>into a file for later reviewing (in case something went wrong with a
>script run
>on cron).
>I have found no documentation for it, and I searched CPAN to no avail.
>?????
Run your program under the debugger and issue the 't' command (set trace
on), then the 'c' command (continue).
I guess you would also like variables to be expanded in place but it
doesn't do this. Nor should it, if you think about it. The restrictions
on variables that the shell can use make this feasible, not so in Perl.
--
Peter Scott
Pacific Systems Design Technologies
http://www.perldebugged.com
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]