检查perl安装了哪些模块的2种方法
时间:2005-05-03 来源:笨狗
检查perl安装了哪些模块的2种方法
1
use ExtUtils::Installed;
my $inst = ExtUtils::Installed->new();
print join " ", $inst->modules();
2
perldoc perllocal
相关阅读 更多 +
排行榜 更多 +
时间:2005-05-03 来源:笨狗
检查perl安装了哪些模块的2种方法
1
use ExtUtils::Installed;
my $inst = ExtUtils::Installed->new();
print join " ", $inst->modules();
2
perldoc perllocal