The colon was the problem
At 02:18 PM 10/26/2008, Mr. Shawn H. Corey wrote:
On Sun, 2008-10-26 at 14:10 -0700, AndrewMcHorney wrote:
> Hello
>
> I have some perl code that was working and for the life of me I
> cannot determine why it is is failing now. All I am trying to do is
> to create and o
AndrewMcHorney schreef:
> ($Seconds,$Minutes,$Hours,$Day,$Month,$Year) =
> (localtime)[0,1,2,3,4,5];
> $Year = $Year + 1900;
Your $Month has a value from 0 to 11.
> $Date =
> $Month."-".$Day."-".$Year.".".$Hours.":".$Minutes.":".$Seconds;
This sorts a lot better:
my @date = (localtime)[5,4,
AndrewMcHorney wrote:
>
> I have some perl code that was working and for the life of me I
> cannot determine why it is is failing now. All I am trying to do is
> to create and open a new file using a date time stamp in the
> filename. Below is the code snippet for the open, It is returning an
On Sun, 2008-10-26 at 14:10 -0700, AndrewMcHorney wrote:
> Hello
>
> I have some perl code that was working and for the life of me I
> cannot determine why it is is failing now. All I am trying to do is
> to create and open a new file using a date time stamp in the
> filename. Below is the code