Ajey wrote:
>
> how can i find which perl modules are installed on linux os?
> regds

Hi.

That's exactly what the ExtUtils::Installed was created for:

  use strict;
  use warnings;

  use ExtUtils::Installed;

  my $install = new ExtUtils::Installed;
  print map "$_\n", $install->modules;

HTH,

Rob



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to