On Tue, 20 Jul 2004 15:24:03 -0500 "Christopher J. Bottaro" <[EMAIL PROTECTED]> wrote:
i use IO::File all the time in my perl scripts. i never installed any
IO::File module from cpan.org and i don't see it anywhere in /usr/lib/perl. also, its not listed in my book "programming perl" as a standard module.
so where does it come from and how am i able to use it?
thanks for the help.
If you are on a linux type system, try this
find `perl -e 'print "@INC"'` -name '*.pm' -print|grep IO
See what it prints out
or on any OS:
perldoc -l IO::File
According to Module::CoreList:
$ perl -MModule::CoreList -e 'print Module::CoreList->first_release("IO::File")'
=> 5.00307
IO::File has been in the core for a while.
Regards, Randy.
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>