On Wednesday, September 10, 2003, at 05:43 PM, Hanson, Rob wrote:
I googles Julian and came up with two email addresses from this page:
http://www.monkey.org/openbsd/archive/misc/9904/msg00077.html
Thank you. I have no idea why, but it never occurred to me to Google
for a person, though it seem
I googles Julian and came up with two email addresses from this page:
http://www.monkey.org/openbsd/archive/misc/9904/msg00077.html
If that fails I'm not sure.
The FAQ on CPAN doesn't help much with this specific case since the mails
are bouncing:
http://www.cpan.org/misc/cpan-faq.html#How_mainta
[EMAIL PROTECTED] [[EMAIL PROTECTED]] quoth:
*>Dose anyone know of a exsiting Perl module that will test to see what tape drives
are available on Unix box?
*>
*>I looked through the some of the CPAN stuff but didn't find anything that looked
like what I might need.
None that I'm aware of as i
On Win32, typing
ppm verify
at the command prompt will list all the modules installed on your system
quit
will exit the ppm tool
[EMAIL PROTECTED] wrote:
> Help with Modules please.
>
> Is there a option I can run with perl to find out if a particular module is
>installed?
>
> Thanks,
>
> Anna
On Fri, 29 Jun 2001 [EMAIL PROTECTED] wrote:
> Help with Modules please.
>
> Is there a option I can run with perl to find out if a particular
> module is installed?
Try perl -M -e ''. If it isn't in @INC, you'll get an error,
otherwise it will return to the command-line prompt.
-- Brett
Hi Anna,
To find out all the modules installed on your system, refer to the
following URL:
http:[EMAIL PROTECTED]/msg04057.html
To find out about a single one, you can do:
perl -MMODULE_NAME -e 1
So, to see if CGI.pm is installed:
perl -MCGI -e 1
If you see no error messages, it is installe
put use (MODULE NAME); at the top of the script. Run the script and see if
it generates an error.
e.g
use Win32::Lanman;
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: 29 June 2001 13:36
To: [EMAIL PROTECTED]
Subject: Modules question
Help with Modules ple