Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.25 KB | None | 0 0
  1. #!/usr/bin/perl
  2.  
  3. #Micky mouse tu pedido ......
  4.  
  5. use ExtUtils::Installed;
  6. my $instmod = ExtUtils::Installed->new();
  7.  
  8. foreach my $module ($instmod->modules())
  9. {
  10.    my $version = $instmod->version($module) || "???";
  11.    print "$module -- $version\n";
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement