Lightning flashed, thunder crashed and "siren jones" <[EMAIL PROTECTED]> whi
spered:
| How does one get the system to recognize the installed PERL module?
| Is there a simple way to test that it work?

Once it is installed, it will be "recognized".  To test, just try something
like:

perl -M[name] -e 'print $[name]::VERSION'

for example:

$ perl -MCPAN -e 'print $CPAN::VERSION'
1.52
$
or, even more simply

perl -M[name] -e ''

for example:

$ perl -MCPAN -e ''
$

$ perl -Mfake -e ''
Can't locate fake.pm in @INC.....

-spp
--
Stephen P Potter        Columbus, Ohio, USA              [EMAIL PROTECTED]
"You can't just magically invoke Larry and expect that to prove your point.
Or prove that you have a point."        -Simon Cozens
UNIX, Perl, PHP, Web Consulting and Training  http://www.unixlabs.net/~spp/

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

Reply via email to