How to find modules exist in perl

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rohitbasu77
    New Member
    • Feb 2008
    • 89

    How to find modules exist in perl

    The enviroment is linux:
    how to find modules loaded in perl.
    how to load an external module in perl.

    thanks
  • eWish
    Recognized Expert Contributor
    • Jul 2007
    • 973

    #2
    You can lean more about that if you read perlfaq3.

    --Kevin

    Comment

    • rohitbasu77
      New Member
      • Feb 2008
      • 89

      #3
      Originally posted by eWish
      You can lean more about that if you read perlfaq3.

      --Kevin
      thanks....
      but i need some command, which i donot remember now to find out all the modules loaded in perl.

      Comment

      • rohitbasu77
        New Member
        • Feb 2008
        • 89

        #4
        To check if the module Mail::Mailer is present:

        # perl -MCPAN -e shell
        CPAN>help
        CPAN>i /Mailer/

        or

        #perl -MMail::Mailer -e 1

        Comment

        Working...