Perhaps I'm just being stupid...
use strict; use Tie::File; use Date::Manip; use Fcntl; tie my @log, 'Tie::File', 'logfile', mode => O_RDONLY or die "Unable t +o open file"; for (@log) { my $t = "$_"; if ($t =~ /time: (.* 2008)/) { my $xxx = ParseDate($1); } } untie @log;
When I run it I get
Couldn't write record: Bad file descriptor at /usr/lib/perl5/5.8.5/Tie/File.pm line 907, <$fh> line 44063.

I think this only happens when something tries to write to a Tied file when it can't be written to.

And it's the my $xxx... line that causes it. How is that possible?

Thanks for any pointers!

In reply to Is this a bug with Date::Manip? by aidan

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.