--- 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/