|
|
| No such thing as a small change | |
| PerlMonks |
perl -M using a module in current dirby electrosphere (Sexton) |
| on Sep 23, 2004 at 11:14 UTC ( #393168=perlquestion: print w/ replies, xml ) | Need Help?? |
|
electrosphere has asked for the
wisdom of the Perl Monks concerning the following question:
Hello Monks,
I searched on PM first but found no joy on this specific piece of Perl wisdom, same for perldoc perlrun. I have changes to a perl module that I want to quickly test from the command line, however perl -M appears to source the module installed in the perl system dir. Assuming my module is Foo::Bar (package Foo::Bar), and I want to call a function barfoo() in it, I am currently doing:
I thought I could make it source the Module in the current dir by using -I. but it didn't work. I realized it would just append this to the end of the @INC array. I then included unshift(@INC, "."); to counter this but it still didn't work. I'm sure there's a simple way! Thanks
Back to
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||||||||