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$/)},$_) for(@INC)'

this solution is not perfect and it only search what Perl consider to be 
standard directories for installed modules. there is nothing to stop a 
vendor from putting their customized modules in another location where Perl 
only have knowledge until run time and need to load the module.

david

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to