really depends on what you use perl to do. if you use TK consistently I'd expect to see TK modules used, or if you're writing a lot of CGI then that's what you'd see.

Not that I'm any expert (far from it), but Me personally, I do a lot of sysadmin/file manipulation and goofing around with files. So I have an abnormally large number of scripts with the following modules in use... also, since I am cpan limited I don't generally use modules that I can't get with the base install... which makes life a pain, but it still beats other programming languages...

use Getopt::Long qw(:config no_ignore_case bundling); #or some variati +on of this. use Cwd; # I like to keep track of where I started before cd'ing use File::Basename qw(fileparse); use File::stat; use File::Find; #love this guy use Time::gmtime; #for timestamps, etc use Time::Local; #time's easy to manip if it's a single scalar use File::Copy; #somewhat DOS/Linux portable (crippled) copy use Carp; use constant CONSTANTNAME => Value; # der... use Tie::IxHash; #it's slow, but sometimes you need an ordered hash use File::Compare; #somewhat portable file diff, truthfully laziness u +sually wins and I usually just call diff as a system call...

In reply to Re: Common uses of "use" by raybies
in thread Common uses of "use" by mjscott2702

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.