#!/usr/bin/perl use strict; use warnings; use CGI; use CPAN; use CPAN::Config; $CPAN::Config->{'build_dir'} = q[/home/rohan/.cpan/build]; $CPAN::Config->{'cpan_home'} = q[/home/rohan/.cpan]; $CPAN::Config->{'histfile'} = q[/home/rohan/.cpan/histfile]; $CPAN::Config->{'keep_source_where'} = q[/home/rohan/.cpan/sources]; $CPAN::Config->{'makepl_arg'} = q[PREFIX=/home/rohan/perllib LIB=home/rohan/perllib/lib/pe rl5]; my $q = CGI->new; print $q->header("text/plain"); CPAN::Shell->install("MP3::Tag");