"Rgíón «hávkú" <[EMAIL PROTECTED]> wrote in message
003001c2d474$f6f76b20$[EMAIL PROTECTED]">news:003001c2d474$f6f76b20$[EMAIL PROTECTED]...
> Hello all.
>
> I've reading some messges relating to the use of modules.
>
> How can I know what modules are installed in the server???
>
> I have my site
Paul wrote:
>> How can I know what modules are installed in the server???
>
> duh. Feeling dense.
> I think there should be a way, but can't think of how to get a full
> listing. Maybe the Config.pm?
try:
[xx@panda]$ perl -MFild::Find -e
'find(sub{print "$File::Find::name\n" if(/\.pm$/)},$_) fo
> How can I know what modules are installed in the server???
duh. Feeling dense.
I think there should be a way, but can't think of how to get a full
listing. Maybe the Config.pm?
Anyway, to test for any *given* module(s), try
perl -MModule::Name -e 'print "Module::Name is installed\n"'
thus, t