Re: perl question



Elite Elite wrote:
Does anyone know what tools come with perl 5.8.8?

Do you mean which core modules? One way to find out is:

perl -MModule::CoreList -e
'print map "$_\n", Module::CoreList->find_modules();'

(you need to install Module::CoreList from CPAN)

Do you mean which utilities?

perldoc perlutil

--
The best way to get a good answer is to ask a good question.
David Filmer (http://DavidFilmer.com)

.