Johnathan1
Johnathan1

Reputation: 2331

Deactivate and Remove Perl Local::Lib

I would like to deactivate the environment variables and remove the appended /home/myusername/perl5.. directories from @INC that were a result of Local::Lib. Can anyone advise? I really would like to get back to the state of perl ENV vars and @INC folders before Local::Lib. I am on Fedora 16.

Upvotes: 4

Views: 3750

Answers (1)

cjm
cjm

Reputation: 62099

Did you read the instructions? In your shell,

eval $(perl -Mlocal::lib=--deactivate-all)

Upvotes: 7

Related Questions