Re: Get list of available modules?

2003-03-03 Thread simran
You could also use cpan's autobundle feature: % perl -MCPAN -e shell cpan> autobundle Then get the systadmin to mail you the file. The snapshot built by autobundle is very useful as you can then use that to get cpan to install all the modules on another machine for you. To see how CPAN build's

Re: Get list of available modules?

2003-03-03 Thread Scott R. Godin
Dave K wrote: > >> Greetings! > Hello >> >> I'm trying to do some Perl for a non-profit organization. The computer >> administrator doesn't know very much about Perl or about the server. >> If I were to ask him what Perl modules were available, he'd probably >> just have to call somebody else an

RE: Get list of available modules?

2003-02-27 Thread Dan Muey
> > Greetings! > Hello > > > > I'm trying to do some Perl for a non-profit organization. The > > computer administrator doesn't know very much about Perl or > about the > > server. If I were to ask him what Perl modules were available, he'd > > probably just have to call somebody else and get

RE: Get list of available modules?

2003-02-25 Thread Ramón Chávez
Sent: Monday, February 24, 2003 1:12 PM Subject: Get list of available modules? > Greetings! > > I'm trying to do some Perl for a non-profit organization. The computer > administrator doesn't know very much about Perl or about the server. > If I were to ask him what Perl

Re: Get list of available modules?

2003-02-25 Thread Dave K
> Greetings! Hello > > I'm trying to do some Perl for a non-profit organization. The computer > administrator doesn't know very much about Perl or about the server. > If I were to ask him what Perl modules were available, he'd probably > just have to call somebody else and get back to me. Is the

Re: Get list of available modules?

2003-02-24 Thread John W. Krahn
And another nit. :-) Jenda Krynicky wrote: > > Just a few nits ;-) > > From: "Hanson, Rob" <[EMAIL PROTECTED]> > > I think there is something like that, but I'm not sure. In the past I > > have rolled my own like this... > > > > #!/usr/bin/perl > > > > use File::Find; > > > > my $dir = ''; > >

RE: Get list of available modules?

2003-02-24 Thread Jenda Krynicky
Just a few nits ;-) From: "Hanson, Rob" <[EMAIL PROTECTED]> > I think there is something like that, but I'm not sure. In the past I > have rolled my own like this... > > #!/usr/bin/perl > > use File::Find; > > my $dir = ''; > > for (@INC) { > $dir = $_; > find (\&wanted, $dir); > } >

RE: Get list of available modules?

2003-02-24 Thread Hanson, Rob
EMAIL PROTECTED] Sent: Monday, February 24, 2003 2:12 PM To: [EMAIL PROTECTED] Subject: Get list of available modules? Greetings! I'm trying to do some Perl for a non-profit organization. The computer administrator doesn't know very much about Perl or about the server. If I were to ask him

Get list of available modules?

2003-02-24 Thread Rob Richardson
Greetings! I'm trying to do some Perl for a non-profit organization. The computer administrator doesn't know very much about Perl or about the server. If I were to ask him what Perl modules were available, he'd probably just have to call somebody else and get back to me. Is there any way to use