blob: 2565bad917d88d9766ac57eea57b7f022fbb89f5 (
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 Log::Dispatch}) {
my $obj = CPAN::Shell->expand('Module',$mod);
$obj->install();
};
|