http://www.perlmonks.org?node_id=574630


in reply to Re: ExtUtils::Installed doesn't list all modules
in thread ExtUtils::Installed doesn't list all modules

My researches and supersearches before I posted my question showed me your list of related threads, and this was useful. However, evidence would seem to suggest that there isn't an ideal solution already out there.

I am not interested in HTML formatting for my needs, just a raw list of module names. Similarly, I am not interested in a command line script.

If EU::I did what it says on the tin, that would have been it. I guess I'll roll my own.

--

Oh Lord, won’t you burn me a Knoppix CD ?
My friends all rate Windows, I must disagree.
Your powers of persuasion will set them all free,
So oh Lord, won’t you burn me a Knoppix CD ?
(Missquoting Janis Joplin)

  • Comment on Re^2: ExtUtils::Installed doesn't list all modules

Replies are listed 'Best First'.
Re^3: ExtUtils::Installed doesn't list all modules
by jacques (Priest) on Sep 25, 2006 at 04:02 UTC
    Well, how about a hash ref whose keys are the names of all the modules in @INC? Would that meet your needs? This isn't in the documentation for my module, but you could do:
    use HTML::Perlinfo::Modules; my $hashref = (HTML::Perlinfo::Modules::find_modules("",1,\@INC))[1]; # Here are all the module names in @INC: print "$_\n" for (keys %$hashref);
    P.S. If you want even more information on those modules you can look into the values of those keys. Or just use Data::Dumper to see what's in that hashref.