blob: 3848e8ec14f283253161d4013e97d38b6ef15988 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /usr/bin/perl -w
# This script installs all perl libraries Echolot needs
# using your CPAN module
use strict;
use CPAN;
for my $mod (qw{Data::Dumper Digest::MD5 HTML::Template GnuPG::Interface}) {
my $obj = CPAN::Shell->expand('Module',$mod);
$obj->install();
};
|