RE: an easy way to know if a module is installed or not

2006-10-05 Thread Johnson, Reginald \(GTI\)
-Original Message- From: Chad Perrin [mailto:[EMAIL PROTECTED] Sent: Thursday, October 05, 2006 1:11 PM To: beginners@perl.org Subject: Re: an easy way to know if a module is installed or not On Thu, Oct 05, 2006 at 12:34:18PM -0400, Johnson, Reginald (GTI) wrote: > To piggy back off

Re: an easy way to know if a module is installed or not

2006-10-05 Thread Mumia W.
On 10/05/2006 11:34 AM, Johnson, Reginald (GTI) wrote: To piggy back off of this question... Is there a way to just list out the modules you have installed? Make sure that perldoc is installed on your system and do this at a command prompt: perldoc -q installed -- To unsubscribe, e-mail:

Re: an easy way to know if a module is installed or not

2006-10-05 Thread Chad Perrin
On Thu, Oct 05, 2006 at 12:34:18PM -0400, Johnson, Reginald (GTI) wrote: > To piggy back off of this question... Is there a way to just list out > the modules you have installed? This works for me: #!/usr/bin/perl -l use strict; use warnings; use File::Find 'find'; use File::Spec::Func

RE: an easy way to know if a module is installed or not

2006-10-05 Thread Johnson, Reginald \(GTI\)
To piggy back off of this question... Is there a way to just list out the modules you have installed? -Original Message- From: Mug [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 04, 2006 11:24 PM To: zhihua li Cc: beginners@perl.org Subject: Re: an easy way to know if a module is

Re: an easy way to know if a module is installed or not

2006-10-05 Thread Greg Sabino Mullane
On Thu, 2006-10-05 at 02:49 +, zhihua li wrote: > I've a question about installed modules in perl. To get an idea as to > weather or not a specific module (say A.pm) is present in my perl I can If you are using bash, here's a handy alias I made you can put in your .bashrc file: alias modv

Re: an easy way to know if a module is installed or not

2006-10-05 Thread Tom Phoenix
On 10/4/06, zhihua li <[EMAIL PROTECTED]> wrote: Can I browse or even search through all the modules already installed in perl directly instead of do the search? You could use Inside: http://search.cpan.org/~phoenix/Inside-1.01/ Hope this helps! --Tom Phoenix Stonehenge Perl Training --

Re: an easy way to know if a module is installed or not

2006-10-04 Thread Mug
zhihua li wrote: > hi netters, > > I've a question about installed modules in perl. To get an idea as to > weather or not a specific module (say A.pm) is present in my perl I > can search if there's a A.pm in the directories specified by @INC. But > isn't there an easier way? Can I browse or even s

an easy way to know if a module is installed or not

2006-10-04 Thread zhihua li
hi netters, I've a question about installed modules in perl. To get an idea as to weather or not a specific module (say A.pm) is present in my perl I can search if there's a A.pm in the directories specified by @INC. But isn't there an easier way? Can I browse or even search through all the mo