in reply to Re: Re: How to list all the installed perl modules
in thread How to list all the installed perl modules
perl -e 'while (<@INC>) { while (<$_/**>) { if (-d) { push(@INC,$_) } +elsif (/\.pm/) { print "$_\n" } else { next } } }'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: How to list all the installed perl modules
by lestrrat (Deacon) on Mar 18, 2002 at 01:25 UTC | |
|
Re4: How to list all the installed perl modules
by blakem (Monsignor) on Mar 18, 2002 at 01:47 UTC |