Re: [Perl-unix-users] Module Versions.

2003-01-17 Thread Alexander Bel...
It's code I used: #!/usr/bin/perl use ExtUtils::Installed; my ($inst) = ExtUtils::Installed->new(); my (@modules) = $inst->modules(); print << "[END]"; Content-type: text/html Information about Perl BODY { background-color: #FF; color: #00; } .normal { font-family: Verdana; font-

[Perl-unix-users] Module Versions.

2003-01-17 Thread Rumpf, Christopher
Title: Message Hi.   I just inherited a perl installation with a ton of modules included in it and want to check each module to see which version is installed.   I know that this cmd: find `perl -e 'print "@INC"'` -name '*.pm' -print   will show me the list of installed modules - but anyon