$ perl -I /home/ginger/Testing/lib/site_perl myproggy
or even by setting the PERL5LIB environment
variable (using sh-like syntax here):
$ PERL5LIB=/home/ginger/Testing/lib/site_perl; export PERL5LIB
$ ./myproggy
However, the downside of any of these methods (other than the
use lib method) is that they
require you to do something more than just execute the file. If
someone (or something) else (such as a coworker or a web server)
executes your program, it's unlikely that the proper
environment variable or command-line option will be present. Your
program will fail because it can't find your locally
installed module.