Hunter的大杂烩 技术学习笔记

2013-11-28

查看已经安装的 Perl 模块

Filed under: 技术话题 — hunter @ 7:32 pm

from:http://www.chenjunlu.com/2011/07/querying-the-installed-modules-of-perl/

这里介绍两种方法来查看已经安装的 Perl 模块,其中第一种方法通过文件名后缀识别 Perl 模块,该方法列出了所有安装的 Perl 模块(包括 Perl 的核心模块),而第二种方法只是列举了系统上安装的 CPAN Perl 模块。

1. Shell 脚本:

find `perl -e ‘print “@INC”‘` -name ‘*.pm’ -print

2. Perl 脚本:

#!/usr/bin/perl
use strict;
use ExtUtils::Installed;

my $inst = ExtUtils::Installed->new();
my @modules = $inst->modules();

foreach (@modules) {
my $ver = $inst->version($_) || “???”;
printf( “%-12s — %s\n”, $_, $ver );
}
exit 0;

No Comments

No comments yet.

RSS feed for comments on this post.

Sorry, the comment form is closed at this time.

Powered by WordPress