So I finally made the switch from MacPerl to Perl
5.8.3 on OSX (10.2.8) and I can't seem to get things
working quite right. I'm having problems using
modules.

% perl -I ~/lib script.pl
#!perl
use module;

...(or moral equivalent) works fine but:

% ./script.pl
#!perl -I ~/lib
use module;

...and:

% ./script.pl
#!perl
use lib '~/lib';
use module;

...both return the error that they can't find the
module, even though @INC is modified as it should be.
What's up?

~wren

__________________________________
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online.
http://taxes.yahoo.com/filing.html

Reply via email to