1 #! /usr/bin/perl -w
2
3 use CPAN;
4 CPAN::Config='EDITED FOR SECURITY PURPOSES';
5
6 print "Content-type: text/html\n\n";
7 my $mod = 'GD';
8 print "Working...
";
9
10 my $obj = CPAN::Shell->expand('Module',$mod);
11 $obj->install;
12 print "
Finished";