반응형
확인 1 :
# vi inst_mod.pl
#!/usr/bin/perl
use ExtUtils::Installed;
my $instmod = ExtUtils::Installed->new();
foreach my $module ($instmod->modules()) {
my $version = $instmod->version($module) || "???";
print "$module -- $version\n";
}
# perl inst_mod.pl
Algorithm::Munkres -- 0.08
Array::Compare -- 2.02
Bio -- ???
...
...
...
확인 2 :
# perl -MExtUtils::Installed -le 'print for ExtUtils::Installed->new->modules' > modules.txt
기존 Module 재 설치 :
# cat modules.txt | xargs cpan -i
반응형
'Lang_Development > Perl' 카테고리의 다른 글
[Perl] Perl Thread support (1) | 2012.10.09 |
---|---|
Mysql 데이터베이스 리스트 (0) | 2012.06.11 |
[Perl] Perl 모듈 설치 (0) | 2012.06.06 |
BIOPerl 설치 (0) | 2012.06.06 |
Perl 설치 (0) | 2012.06.06 |
최근댓글