in reply to taking Digest::MD5 with you
You can 'tweek' the Makefile.PL at the command line level to install the module into a custom directory, if you have access to one.
Then you set the PERL5LIB environmental variable to point to this directory:perl Makefile.PL PREFIX=<mydir> make && make install
I'm not sure, but this might work, in your script you can tweek the env PERL5LIB variable BEFORE the first 'use' statementexport PERL5LIB=$PERL5LIB:<mydir>/lib:<mydir>/lib/site_perl OR setenv PERL5LIB $PERL5LIB:<mydir>/lib:<mydir>/lib/site_perl
$ENV{PERL5LIB}=$ENV{PERL5LIB}::<mydir>/lib:<mydir>/lib/site_perl use Digest::MD5 ;
|
|---|