* [EMAIL PROTECTED] [2005-10-01T09:27:16] > Perlers........... > Could u plz help me how to check in unis machine whether a particular perl > module is installed on unix machine or not
(Here on perl-beginners, I think non-LOL English is the preferred dialect.) The traditional test for "Do I have XYZ:ABC installed?" is: perl -MXYZ::ABE -e1 That is about equivalent to running this perl program: #!/usr/bin/perl use XYZ::ABE; 1; If you get an error like, "Couldn't find XYZ/ABE.pm in @INC..." you don't have the module installed in your inclusion path. -- rjbs
pgp21cvDcfxTw.pgp
Description: PGP signature