列出所有已安装的perl模块

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

use ExtUtils::Installed;


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

原文地址:https://www.cnblogs.com/secbook/p/2655492.html