モジュールの場所


 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";

関連項目

モジュールの情報