モジュールの場所
perldocコマンドの-lオプションで分かります。
例えば、File::Pathモジュールの場所が知りたいときには、
perldoc -l File::Pathと実行すると
/usr/lib/perl5/5.6.1/File/Path.pmというように表示されます。
プログラム上で知りたい場合はClass::Inspectorモジュールを使うと簡単です。
use strict; use warnings; use Class::Inspector; my $module = 'File::Path'; print Class::Inspector->resolved_filename($module), "\n";