列出所有已安装的perl模块

来源:互联网 发布:卡通人物形象设计软件 编辑:程序博客网 时间:2024/04/30 14:09

 #!usr/bin/perl
use strict;
use warnings;

use ExtUtils::Installed;


my $inst = ExtUtils::Installed->new();
print join "/n", $inst->modules();

原创粉丝点击