Help for this page

Select Code to Download


  1. or download this
    use ExtUtils::Installed;
    my $installed = ExtUtils::Installed->new();
    ...
        print "didn't find it.";
    }
    exit;
    
  2. or download this
    print "<p>Finding all installed modules...<br>\n";
    my $installed2 = ExtUtils::Installed->new();
    ...
      my $version = $installed2->version($module) || "<no version info>";
      print("Found module $module Version $version<br>\n");
    }
    
  3. or download this
    Finding all installed modules...
    Found module Perl Version 5.10.0
    Script finished.