RV: Newbie question about modules

2003-02-19 Thread Ramón Chávez
I have used and installed Perldiver Just upload and run. Great tool. Thank you very much for the advice. -rm- - Original Message - From: Todd Wade [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 18, 2003 4:33 AM Subject: Re: Newbie question about modules Rgíón

Re: Newbie question about modules

2003-02-18 Thread Todd Wade
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 hosted on

Newbie question about modules

2003-02-14 Thread Ramón Chávez
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 hosted on a Server far away from here. And it provides me Perl with the most commonly used modules. Being that I'm not an expert on Perl I don't know

Re: Newbie question about modules

2003-02-14 Thread Paul
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, to

Re: Newbie question about modules

2003-02-14 Thread david
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$/)},$_)