in reply to Re: discovering installed packages
in thread discovering installed packages
Works great - but why isn't 'extutils' in the list? <edit> Found this thread: http://www.perlmonks.org/?node_id=574615 </edit>#!/usr/bin/perl -w use ExtUtils::Installed; my $inst = ExtUtils::Installed->new(); my @modules = $inst->modules(); use Data::Dumper; print Dumper(@modules);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: discovering installed packages
by FunkyMonk (Bishop) on Jun 05, 2007 at 21:17 UTC |