in reply to Re: How to list all the installed perl modules
in thread How to list all the installed perl modules
or shorter:use File::Find; # Module list foreach my $dir (@INC){ find sub { print "$File::Find::name\t" if /\.pm$/; }, $dir; }
use File::Find; find sub { print "$File::Find::name\t" if /\.pm$/; }, @INC;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: How to list all the installed perl modules
by fuzzyping (Chaplain) on Mar 18, 2002 at 00:56 UTC | |
by lestrrat (Deacon) on Mar 18, 2002 at 01:25 UTC | |
by blakem (Monsignor) on Mar 18, 2002 at 01:47 UTC |