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 issuing: perldoc <module name> http://danconia.org ------------------------------------------------ On Wed, 26 Mar 2003 10:08:00 -0800, "David Olbersen" <[EMAIL PROTECTED]> wrote: > 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 > iGuard Engineer > 11415 West Bernardo Court > San Diego, CA 92127 > 1-858-676-2277 x2152 > > > > -----Original Message----- > > From: Eric Walker [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, March 26, 2003 10:05 AM > > To: [EMAIL PROTECTED] > > Subject: INFO PLEASE > > > > > > 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 > > > > > > -- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]