check the time and date

2003-08-27 Thread Boon Chong Ang
lease the license within certain time and date and I want evoke the software through perl. How do it ask perl to check the time and date and in the following manager Task: check the time and date, for example when current time and date is 11am sharp, 27 August and I want it to check license

Re: What perl module converts unix time to regular time and date

2002-08-26 Thread drieux
On Monday, August 26, 2002, at 05:43 , FLAHERTY, JIM-CONT wrote: > What perl module converts unix time to regular time and date ? > > Thanks > Jim perldoc -f localtime vladimir: 76:] perl -e 'my @stuff=localtime ; print "@stuff\n";' 17 52 8 26 7 1

Re: What perl module converts unix time to regular time and date

2002-08-26 Thread Felix Geerinckx
on Mon, 26 Aug 2002 12:43:17 GMT, [EMAIL PROTECTED] (Jim-Cont Flaherty) wrote: > What perl module converts unix time to regular time and date ? If you mean with 'unix time' seconds since epoch, and with 'regular time' year, month, day, hour, min and sec, you do

What perl module converts unix time to regular time and date

2002-08-26 Thread FLAHERTY, JIM-CONT
What perl module converts unix time to regular time and date ? Thanks Jim

Re: Time and Date

2002-08-20 Thread david zhuo
n the individaul part... david A Taylor wrote: > Hi all, > Thanks for your help so far - I have managed to sort out my time and date > problem but there are a few points that I dont understand. > The code I have used is as follows: > > # get the hours, mins, weekday, day,

Re: Time and Date

2002-08-20 Thread David Zhuo
ECTED]">news:[EMAIL PROTECTED]... > Hi all, > Thanks for your help so far - I have managed to sort out my time and date > problem but there are a few points that I dont understand. > The code I have used is as follows: > > # get the hours, mins, weekday, day, month and

Re: time and date

2002-08-20 Thread David Zhuo
do you want to extract the date and time string in your email message(header) or that you want to know what time does the email arrive? david "A Taylor" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I am trying to get the time a

Re: Time and Date

2002-08-19 Thread Elaine -HFB- Ashton
A Taylor [[EMAIL PROTECTED]] quoth: *> *>Also I have had to add 1 to the hour var: $hour ++; even though my web *>space providers are in the same country as me - does anyone know why this *>is - I am probably being a bit daft - well it is 1am, and I have been *>perling for about 16 hours now !!

Re: Time and Date

2002-08-19 Thread John W. Krahn
A Taylor wrote: > > Hi all, Hello, > Thanks for your help so far - I have managed to sort out my time and date > problem but there are a few points that I dont understand. > The code I have used is as follows: > > # get the hours, mins, weekday, day, month and year

Time and Date

2002-08-19 Thread A Taylor
Hi all, Thanks for your help so far - I have managed to sort out my time and date problem but there are a few points that I dont understand. The code I have used is as follows: # get the hours, mins, weekday, day, month and year $hour = (gmtime)[2]; $min = (gmtime)[1]; $wday = (qw(Sun Mon

Re: time and date

2002-08-19 Thread Kevin Meltzer
thing similar to: > I am trying to get the time and date that some one sends me an email. > can anyone help me or point me in the right direction as how to get these in > perl ??? > > Thanks in advance for your help - its much appreciated > Anadi > > > > You are just

time and date

2002-08-19 Thread A Taylor
I am trying to get the time and date that some one sends me an email. can anyone help me or point me in the right direction as how to get these in perl ??? Thanks in advance for your help - its much appreciated Anadi You are just a dewdrop, and as you meditate the dewdrop starts slipping

Re: Time and date formats

2002-03-01 Thread Brett W. McCoy
On Fri, 1 Mar 2002, Troy May wrote: > What do the letters after the "%02" mean? I know about "%02d", but I came > across a few scripts with "%02u" in it. I've never seen that, what does it > mean? What's the difference between the "d" and the "u"? And what ELSE can > you possibly use there?

RE: Time and date formats

2002-03-01 Thread Timothy Johnson
Original Message- From: Troy May To: Perl Beginners Sent: 3/1/02 5:50 PM Subject: Time and date formats What do the letters after the "%02" mean? I know about "%02d", but I came across a few scripts with "%02u" in it. I've never seen that, what does it

Time and date formats

2002-03-01 Thread Troy May
What do the letters after the "%02" mean? I know about "%02d", but I came across a few scripts with "%02u" in it. I've never seen that, what does it mean? What's the difference between the "d" and the "u"? And what ELSE can you possibly use there? -- To unsubscribe, e-mail: [EMAIL PROTECTED