in reply to Re: discovering installed packages
in thread discovering installed packages

<caveat>Im a perl noob - and particularly to this board - sorry about hitting a FAQ</caveat> I entered this bit:
#!/usr/bin/perl -w use ExtUtils::Installed; my $inst = ExtUtils::Installed->new(); my @modules = $inst->modules(); use Data::Dumper; print Dumper(@modules);
Works great - but why isn't 'extutils' in the list? <edit> Found this thread: http://www.perlmonks.org/?node_id=574615 </edit>

Replies are listed 'Best First'.
Re^3: discovering installed packages
by FunkyMonk (Bishop) on Jun 05, 2007 at 21:17 UTC