Question:
( I believe I know the answer but I have - not by my design - several versions of Perl on my development system and I want to be sure which Perl is being used because some have more modules installed than others ).
In this case unless the modules you wish to use have items that are specific to the version of Perl they were built for (aka require threading, or other items builtin to perl) you should be able to use any module store by either setting the PERL5LIB or issuing:
use lib '/path/to/module/directory';
In your scripts..... make sure to test!!!
http://danconia.org
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]