Re: INFO PLEASE

2003-03-28 Thread Scott R. Godin
Eric Walker wrote: > how can I see where modules are installed no matter if they are personal > or come with perl also how can I tell what functions are available for > them. Thanks There's my ModuleReport script -- http://www.webdragon.net/mr/ There's still a few things I'd like to do with it,

RE: INFO PLEASE

2003-03-26 Thread Ramón Chávez
Try PERLDIVER http://www.scriptsolutions.com/programs/free/perldiver/ It helped me a lot. It'll show you all the modules installed on your system. Just Install, and run. -rm- - Original Message - From: Eric Walker <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 26, 20

Re: INFO PLEASE

2003-03-26 Thread Eric Walker
Jaimee Spencer wrote:   Hello, Eric.    Copy and paste the below code and try it out.  You will need the File::Find module installed. Regards, Jaimee #!/usr/bin/perl -w # list all of the perl modules installed use strict; use File::Find ; for (@INC) { find(\&modules,$_) ; } sub modules {    

RE: INFO PLEASE

2003-03-26 Thread Jaimee Spencer
Eric. File::Find may already be installed. -Original Message- From: Jaimee Spencer [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 10:20 AM To: 'Eric Walker'; [EMAIL PROTECTED] Subject: RE: INFO PLEASE Hello, Eric. Copy and paste the below code and try it

RE: INFO PLEASE

2003-03-26 Thread Jaimee Spencer
Hello, Eric. Copy and paste the below code and try it out. You will need the File::Find module installed. Regards, Jaimee #!/usr/bin/perl -w # list all of the perl modules installed use strict; use File::Find ; for (@INC) { find(\&modules,$_) ; } sub modules { if (-d && /^[a-z

RE: INFO PLEASE

2003-03-26 Thread wiggins
Though it will not catch all module files on the system, the following (from perldoc CPAN) will provide a list of modules avaiable to Perl... find `perl -e 'print "@INC"'` -name "*.pm" Like David said, for how to use them check the documentation that most provide, this is most easily done by is

RE: INFO PLEASE

2003-03-26 Thread David Olbersen
Eric, On a UNIX system you could try something very slow like: find /usr /home -type f -name "*.pm" -ls You'd need to do that as root to make sure you could search all the sub-directories. With respect to available functions, read the man pages! -- David Olbersen iGuar