perl help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Calvinguy
    Confirmed User
    • Oct 2002
    • 1752

    #1

    perl help

    How do I find out if these modules are installed correctly and which version they are?

    Time::ParseDate
    Term::ReadKey
  • NetRodent
    Confirmed User
    • Jan 2002
    • 3985

    #2
    Generally I use perldoc to see if a module is installed. Its not perfect but it usually works.

    perldoc Time::ParseDate
    perldoc Term::ReadKey

    You could also just try using them in a script and see if you get any errors.
    "Every normal man must be tempted, at times, to spit on his hands, hoist the black flag, and begin slitting throats."
    --H.L. Mencken

    Comment

    • neighborhood_bob
      Registered User
      • Jun 2003
      • 83

      #3
      Perldiver is a nice little utility to check installed modules on
      your webhost. Get it at

      http://www.scriptsolutions.com/programs/free/perldiver/

      No config is needed. Just download it, upload to your cgi-bin,
      chmod 755, and call it up in browser.
      <br><br><EMBED src="http://www.gulfmeridian.com/hic.swf" menu=false quality=high WIDTH="120" HEIGHT="60" NAME="hic" ALIGN=""></EMBED>

      Comment

      • Calvinguy
        Confirmed User
        • Oct 2002
        • 1752

        #4
        Originally posted by neighborhood_bob
        Perldiver is a nice little utility to check installed modules on
        your webhost. Get it at

        http://www.scriptsolutions.com/programs/free/perldiver/

        No config is needed. Just download it, upload to your cgi-bin,
        chmod 755, and call it up in browser.
        This looks pretty cool but unfortunately I have to register to download it and the regstrationscript is not working

        Comment

        • lawked
          Confirmed User
          • Apr 2003
          • 354

          #5
          perl -MTerm::ReadKey -e 'print $Term::ReadKey::VERSION,"\n"';

          perl -MTime::ParseDate -e 'print $Time::ParseDate::VERSION,"\n"';

          Comment

          Working...