Thanks for the reply, actually when I tried installing
“only”  module, my test was failing, later I figure
out its because of the "version" module that I have
installed in my system. That’s why I was trying to
uninstall the module and see how “only” module react.
Thank you all for your help. 

--- oryann9 <[EMAIL PROTECTED]> wrote:

> 
> --- a_arya2000 <[EMAIL PROTECTED]> wrote:
> 
> > Hello, does anyone know what is the most effective
> > way
> > of uninstalling perl module? Thank you.
> > 
> Why would you want to do such a thing?  Just take
> the
> path to this module out of @INC by editing your
> .profile and or PERL5LIB variable, unless you think
> its corrupt.
> 
> perl -le 'print join("\n", @INC);'
> 
> If you really want to remove this module do a backup
> first, tar cvf module.tar /path/to/module, 
> then rm -rf /path/to/module
> 
> Here is a script to see what is installed.
> 
> ##-- Show me all installed Modules --##
> use File::Find 'find';
> use File::Spec::Functions;
> 
> my $i=0;
> print "Your installed modules on $^O are:\n";
> print "-" x 38,"\n";
> find { wanted => sub { print ++$i, "\t$_\n" if
> /\.pm\z/ },
>     no_chdir => 1},
> @INC;
>  
> Hope that helps! :)
> 
> 
>        
>
____________________________________________________________________________________
> Be a better Globetrotter. Get better travel answers
> from someone who knows. Yahoo! Answers - Check it
> out.
>
http://answers.yahoo.com/dir/?link=list&sid=396545469
> 
> -- 
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> http://learn.perl.org/
> 
> 
> 



       
____________________________________________________________________________________
Need a vacation? Get great deals
to amazing places on Yahoo! Travel.
http://travel.yahoo.com/

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to