Michael wrote:
> I have a couple of PERL installations on my system. How do I point perl
at
> the correct set of modules? I tried setting @INC inline in my program,
but
> that did not work.
You can use the path the Perl installation you want to use in your shebang.
Here's an example:
#!/apps/perl/5.6.0/bin/perl
Just remember that if you're trying to test the script from the command
line, rather than typing:
% perl <script_name>
instead you would type
% /apps/perl/5.6.0/bin/perl <script_name>
HTH
=====
Dave Hoover
"Twice blessed is help unlooked for." --Tolkien
http://www.redsquirreldesign.com/dave