I use vile (a vi look-a-like), with the following Perl specific settings:
define-submode perl shiftwidth 4 1 store-macro goto-beginning-of-file append-string "#!/usr/bin/perl\n\n" append-string "use strict;\n"; append-string "use warnings;\n"; set-mode "perlmode" position-window b open-line-below-and-append-chars ~endm 2 store-macro save-file shell-command &cat "perl " $cfilname ~endm 3 store-macro save-file shell-command &cat "perl -c " $cfilname ~endm 4 store-macro save-file shell-command "make" ~endm bind-key execute-macro-1 ^A-p bind-key execute-macro-2 ^A-r bind-key execute-macro-3 ^A-c bind-key execute-macro-4 ^A-m
Do I need more for development? Well, a second xterm is useful, and make. I love make. The only times I've replaced Perl programs that I wrote myself, with something else I've replaced them with Makefiles. Lots of fluids are important too. I always have one or more bottles of carbonated water on my desk, and coke (or other sodas) and/or tea is usually near as well.

For debugging, I mostly use plain print statements, sometimes I use YAML to show the structure of a complex datastructure (I find Data::Dumpers output to be unreadable). Command line options I may use for debugging are: -c, -Dr and -MO=Deparse. I've never used the Perl debugger. Sometimes I use [ps]?trace/truss (or whatever it's called on the box I'm working on) or snoop/tcpdump for debugging. Or I peek in the source. And then there are top, ps, *stat, glance, /proc/*, netstat, route and syslog which I use to debug and investigate problems with. Obviously, some of the tools are more Perl specific than others.

Abigail


In reply to Re: perl tools by Abigail-II
in thread perl tools by Murcia

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.