Rob wrote:
> Is there a perl command to list installed modules?

This is a FAQ.

As far as I'm concerned, by far the best way is to use
ExtUtils::Installed like this:

    use ExtUtils::Installed;
    print "$_\n" foreach ExtUtils::Installed->new->modules;

which does a lot more than just list the *.pm files in @INC.

Cheers,

Rob




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to