in reply to module location
But as liz notes, that requires munging the module name for any module with a '::' seperator. Better yet, don't load the module at all and just make use of Module::Locaterequire( shift @ARGV );
use Module::Locate 'locate'; my $path = locate $ARGV[0];
_________
broquaint
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: module location
by hmerrill (Friar) on Nov 07, 2003 at 16:17 UTC | |
by broquaint (Abbot) on Nov 07, 2003 at 16:29 UTC |