Re: list all installed perl modules

2003-07-04 Thread Piers Cawley
Nicholas Clark <[EMAIL PROTECTED]> writes: > On Wed, Jul 02, 2003 at 05:22:17PM +0100, Leon Brocard wrote: >> Redvers Davies sent the following bits through the ether: >> >> > Speak to shiny, orange acme and acquire cpanstats. >> > >> > http://www.astray.com/cpanstats/ >> >> Look, okay, I'm so

Re: list all installed perl modules

2003-07-02 Thread Nicholas Clark
On Wed, Jul 02, 2003 at 05:22:17PM +0100, Leon Brocard wrote: > Redvers Davies sent the following bits through the ether: > > > Speak to shiny, orange acme and acquire cpanstats. > > > > http://www.astray.com/cpanstats/ > > Look, okay, I'm sorry. I broke cpanstats a while ago and have zero > fr

Re: list all installed perl modules

2003-07-02 Thread Paul Sharpe
Leon Brocard wrote: Redvers Davies sent the following bits through the ether: Speak to shiny, orange acme and acquire cpanstats. http://www.astray.com/cpanstats/ Look, okay, I'm sorry. I broke cpanstats a while ago and have zero free time to fix it. I'm sorry, very sorry. Leon Say it like you

Re: list all installed perl modules

2003-07-02 Thread Leon Brocard
Redvers Davies sent the following bits through the ether: > Speak to shiny, orange acme and acquire cpanstats. > > http://www.astray.com/cpanstats/ Look, okay, I'm sorry. I broke cpanstats a while ago and have zero free time to fix it. I'm sorry, very sorry. Leon -- Leon Brocard..

Re: list all installed perl modules

2003-07-02 Thread Elaine -HFB- Ashton
Andy Ford [EMAIL PROTECTED] quoth: *>What is an easy way to find all installed perl modules *> *>Is there a module to do it!! http://www.cpan.org/misc/cpan-faq.html#How_installed_modules e.

Re: list all installed perl modules

2003-07-02 Thread Belden Lyman
Paul Makepeace wrote: On Thu, Jul 03, 2003 at 12:36:29AM +, Andy Ford wrote: What is an easy way to find all installed perl modules perldoc perllocal P Some modules overwrite perllocal rather than appending. Funny that I have a short list yet haven't contacted authors... Belden

Re: list all installed perl modules

2003-07-02 Thread James Campbell
Hi Andy >What is an easy way to find all installed perl modules Try this one James #!/usr/bin/perl -w use strict; # findModules.pl- is for finding modules on a machine - based upon work # From: Jaimee Spencer <[EMAIL PROTECTED]> # Date: Wed Apr 17, 2002 09:24:35 US/Pacific # To: [EMAIL PROT

Re: list all installed perl modules

2003-07-02 Thread Andy Ford
or the slightly modded version perl -e 'foreach $a (@INC){next if ($a eq ".");if(-d $a)[EMAIL PROTECTED] = `nice find $a -name *.pm`;} map{s/^$a\/?(.*)\.pm$/$1/;s/\//::/g; push (@n,$_) if ($_!~/\.|-/);} @m; print @n;}' | grep Digest Saves on errors ;0) Andy On Wed, 2003-07-02 at 14:59, Al

Re: list all installed perl modules

2003-07-02 Thread Philip Newton
On 3 Jul 2003 at 0:36, Andy Ford wrote: > What is an easy way to find all installed perl modules > > Is there a module to do it!! Well, there's Tom Phoenix's Inside ( http://search.cpan.org/author/PHOENIX/Inside-1.01/ ). I think it's a script rather than a module, though. Cheers, Philip -- P

Re: list all installed perl modules

2003-07-02 Thread Alex Hudson
On Thu, Jul 03, 2003 at 12:36:29AM +, Andy Ford wrote: > What is an easy way to find all installed perl modules > > Is there a module to do it!! I'm posting this in the hope someone will show how wrong I am. perl -e 'foreach $a (@INC){next if ($a eq ".");@m = `nice find $a -name *.pm`; map{s

Re: list all installed perl modules

2003-07-02 Thread Paul Makepeace
On Thu, Jul 03, 2003 at 12:36:29AM +, Andy Ford wrote: > What is an easy way to find all installed perl modules perldoc perllocal P -- Paul Makepeace ... http://paulm.com/ "If I make new friends in Portland, then it'd grow exponentially, unbounded by ti

Re: list all installed perl modules

2003-07-02 Thread Redvers Davies
On Thu, 2003-07-03 at 00:36, Andy Ford wrote: > What is an easy way to find all installed perl modules > Is there a module to do it!! Speak to shiny, orange acme and acquire cpanstats. http://www.astray.com/cpanstats/

list all installed perl modules

2003-07-02 Thread Andy Ford
What is an easy way to find all installed perl modules Is there a module to do it!! Andy