Greetings Fellow Monestary Inhabitants, I come, humbly beseeching the assistance of the Monks, Saints, Prelates, etc on a Date, particularly POSIX::strftime, problem I've found.

The Setup

I ahve a perl script that runds on a Win2K box via scheduler and parses some network logs. The way it knows what to do is get today's date with

my $time = POSIX::strftime "%Y%m%d",localtime;

and them the following happens to parse yesterday's files:

my $newtime = ($time -1); my $log = $newtime.".log";

As many of you already can see, things broke this morning because 20041001 -1 is 20041000 and not 20040930. So, I'm looking for a fix. I've dug a bit through CPAN and looked at Activestates's info. Many possible modules don't want to compile properly on Win32.

Another complication, I use pp to package my scripts into Win32 executables.

Thanks for any and all assistance,

monger

Monger +++++++++++++++++++++++++ Munging Perl on the side

In reply to Date Trickiness by monger

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.