> I'm using Perl 5.6.1 for mainly CGI work
> 
> How do I know which modules are already installed?
> 

If you have shell access,

find `perl -e 'print "@INC"'` -name '*.pm' -print

Will show you, note that this will include modules in your cwd which if
that is your home dir and you have a .cpan they will show up.

perl -M<module name> -e 1

Will produce an error if you don't have a specific module installed, if
you know specifically what you wish to check for.

Does this get it? If not let us know....

http://danconia.org

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to