in reply to Re: bad results from stat()
in thread bad results from stat()

I have 3 books on Perl (but not the Camel book). They all dance around the important part of the topic. Now I understand what's going on (thanks to all of you who answered). So the part about stat() returning an array, and specifying which elements from the array I need to call, makes perfectly good sense. Thanks, Monks PS: I don't have the Camel book because 1. a former employer has it (grrrr) 2. I only use PERL when the task needs PERL's awesome power.

Replies are listed 'Best First'.
Re^3: bad results from stat()
by jpeg (Chaplain) on Mar 08, 2005 at 01:23 UTC
    We understand ;)

    By the way, perldoc is perl's online help and is installed with perl. It's a fantastic reference and easy to use. At a command prompt type:

    perldoc -f stat or any function name for info about the function and what args it expects and what it returns,
    perldoc perlop to decipher all of those funky operators,
    perldoc perlsyn
    perldoc perlref
    perldoc perlfaq
    are all worth looking at as well.
      Also
      • perldoc perlintro
      or even
      • perldoc perl