in reply to Obtain Location of .pm in Use

%INC maintains a hash of (module filename relative to directories in @INC) => (full path to module file). ie, on my system, I get
$VAR1 = { 'warnings/register.pm' => '/usr/share/perl/5.8/warnings/regi +ster.pm', ...

from use Data::Dumper; print Dumper \%INC

That should tell you where perl is finding your module.

Replies are listed 'Best First'.
Re^2: Obtain Location of .pm in Use
by mlong (Sexton) on Aug 30, 2007 at 16:51 UTC
    Thanks for your help. That was exactly what I needed. -Matt