On Tue, Dec 11, 2001 at 11:46:50AM -0700, [EMAIL PROTECTED] wrote: > Hi, > I'm guessing this has been asked before, but is there a way to tell which > modules you have installed? My system guys are picky about new ones, so > I would like to know what we already have...
The easiest thing to do is: #!/usr/bin/perl -w use strict; use ExtUtils::Installed; my $install = new ExtUtils::Installed; print join("\n", $install->modules()), "\n"; ExtUtils::Installed does a pretty good job and should find everything if you have a reasonable Perl configuration. Z. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]