Perl5 plugin for intelij IDEA has support for built-in Perl debugger. So you may consider it as a gui interface to debugger.

18.07.17 5:48, David Mertens пишет:
If you really want a GUI debugger you might consider Padre. I've used it as a debugger once or twice, but recall running into issues. Note that Padre has been a stale project for a while, so it may not even install.

A safe bet, if non-gui, is the perl debugger, as already mentioned.

David

On Mon, Jul 17, 2017 at 4:39 PM, Andrew Solomon <and...@geekuni.com <mailto:and...@geekuni.com>> wrote:

    There's also a very nice tutorial here
    
http://techblog.net-a-porter.com/2014/03/learning-the-perl-debugger-introduction/
    
<http://techblog.net-a-porter.com/2014/03/learning-the-perl-debugger-introduction/>

    On Mon, Jul 17, 2017 at 8:54 PM, Chas. Owens <chas.ow...@gmail.com
    <mailto:chas.ow...@gmail.com>> wrote:

        Perl has a built in debugger.  You can say

        perl -d abc.pl <http://abc.pl>

        And it will stop at the first executable line (ignoring BEGIN
        blocks and use statements).  You can then step through or over
        the code.  See https://perldoc.perl.org/perldebug.html
        <https://perldoc.perl.org/perldebug.html> or perldoc perldebug
        for more information.

        On Mon, Jul 17, 2017 at 3:48 PM Asad <asad.hasan2...@gmail.com
        <mailto:asad.hasan2...@gmail.com>> wrote:

            Hi All ,

                      I am new to perl , I a have a abc.pl
            <http://abc.pl> script and abc.pm <http://abc.pm> module .
            I want to understand when I execute abc.pl <http://abc.pl>
            hw to get to a debug state to identify what values does it
            take . Any GUI interface available to see the flow of events.


-- Asad Hasan
            +91 9582111698 <tel:+91%2095821%2011698>




-- Andrew Solomon

    Mentor@Geekuni http://geekuni.com/ <http://geekuni.com/>
    http://www.linkedin.com/in/asolomon
    <http://www.linkedin.com/in/asolomon>




--
 "Debugging is twice as hard as writing the code in the first place.
  Therefore, if you write the code as cleverly as possible, you are,
  by definition, not smart enough to debug it." -- Brian Kernighan

Reply via email to