I use this: ____ #!/usr/bin/perl print "Content-Type: text/html\n\n"; use ExtUtils::Installed; my $instmod = ExtUtils::Installed->new(); foreach my $module ($instmod->modules()) { my $version = $instmod->version($module) || "???"; print "$module -- $version"; print "<br>"; } ____
I don't remember where I got it :( Hope this helps. Cy On Mon, 2006-12-18 at 16:37 +0530, positive mind wrote: > In Linux, how do I check if a particular Perl module is installed or not on > my system? > > thanks > pm -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>