in reply to Re: Re: Re: How to list all the installed perl modules
in thread How to list all the installed perl modules
Is very suspect code.... You probably want something like:while(<@INC>)
See Why is @array so slow? for more details.my @copy = @INC; while(defined($_ = shift(@copy))) { # push to @copy as necessary }
-Blake
|
|---|