>perl -V got me the following, BUT how do I tell if Perl modules: 
>Digest::MD5, Crypt::DES, Crypt::CBC
>are installed?
>
># perl -V
> [snipped]

You can poke around in under the directories mentioned by @INC in the perl -V output, 
or you can do things like:

% perl -MDigest::MD5 -le 'print $Digest::MD5::VERSION'

for each module.

...Steve


-- 
Steve van der Burg
Information Services
London Health Sciences Centre
(519) 685-8300 ext 35559
[EMAIL PROTECTED]

Reply via email to