in reply to Re: Yesterday Date
in thread Yesterday Date

How could one use this?
Would that be that the $date is today's date, what would $off be, and $time be?

Replies are listed 'Best First'.
Re^3: Yesterday Date
by ww (Archbishop) on Feb 04, 2008 at 20:04 UTC
    For an explanation of how to use an installed module, for example, Date::Manip
    perldoc date::manip
    for any of the other modules, substitute the name of your selection.
      perldoc date::manip
      That's a broken example. If you're going to use an example, use a proper one:
      localhost:~ % perldoc date::manip No documentation found for "date::manip". localhost:~ % perldoc Date::Manip [page shown]
      It's case sensitive.
        True on nix-ish OS, untrue on winders:
        C:\>perldoc date::manip NAME Date::Manip - date manipulation routines SYNOPSIS use Date::Manip; ....

        Nonetheless, your point re a correct and generic form is well taken. TY.