RE: time managing

2004-09-15 Thread Stout, Joel R
Microsoft Scheduler also sucks but not quite as bad as "at". I'd look into the Windows Cron first but you can also run a daemon (below). #your shebang use strict; use POSIX; # Start the loop for the daemon while(1) { my(@now) = localtime(); my($today) = POSIX::strftime( "%m

RE: time managing

2004-09-15 Thread Jenda Krynicky
;s what it is basically designed > to do. I don't say that I am a Unix guru and I might be missing > something here. > > -Original Message- > From: Wiggins d Anconia [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 15, 2004 9:21 AM > To: NandKishore.Sagi; Ishw

RE: time managing

2004-09-15 Thread NandKishore.Sagi
thing here. -Original Message- From: Wiggins d Anconia [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 15, 2004 9:21 AM To: NandKishore.Sagi; Ishwor; Perl Beginners List; Budi Santosa Subject: RE: time managing Please bottom post... > CRON the one and the best solution to all your problems

RE: time managing

2004-09-15 Thread Wiggins d Anconia
service in user land that generally gets started at boot time. > > Hope this helps. > > Nandu http://danconia.org > > -Original Message- > From: Ishwor [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 15, 2004 9:03 AM > To: Perl Beginners List > Cc:

Re: time managing

2004-09-15 Thread Wiggins d Anconia
Please bottom post... > I am not a guru for Unix or Perl but i suppose u could to write a call > to a function that > * Pulls the job > * wait for an hour after every pull? maybe using something like wait()? > If anyone else could give a pointer on how to do the second point. > Would be great. > C

RE: time managing

2004-09-15 Thread Bob Showalter
Budi Santosa wrote: > Chris and Scott, > Thanks for your information. Unfortunately, I use > windows-based Komodo as my Perl platform. > Is there any cron function in this platform? Windows has an "at" scheduler that, frankly, sucks big time. Here's a perl cron for windows: http://cronw.sourcefor

RE: time managing

2004-09-15 Thread NandKishore.Sagi
el. Hope this helps. Nandu -Original Message- From: Ishwor [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 15, 2004 9:03 AM To: Perl Beginners List Cc: Budi Santosa Subject: Re: time managing I am not a guru for Unix or Perl but i suppose u could to write a call to a function that *

Re: time managing

2004-09-15 Thread Ishwor
I am not a guru for Unix or Perl but i suppose u could to write a call to a function that * Pulls the job * wait for an hour after every pull? maybe using something like wait()? If anyone else could give a pointer on how to do the second point. Would be great. Cheers On Wed, 15 Sep 2004 09:35:01 -

Re: time managing

2004-09-15 Thread Budi Santosa
Chris and Scott, Thanks for your information. Unfortunately, I use windows-based Komodo as my Perl platform. Is there any cron function in this platform? Budi --- Chris Devers <[EMAIL PROTECTED]> wrote: > On Wed, 15 Sep 2004, Budi Santosa wrote: > > > What do you mean with a cron job? > >

Re: time managing

2004-09-15 Thread Chris Devers
On Wed, 15 Sep 2004, Budi Santosa wrote: > What do you mean with a cron job? You're going to have to take some initiative to figure some of these things out with a search engine. Here's the first hit when you put "cron" into Google:

RE: time managing

2004-09-15 Thread NIPP, SCOTT V \(SBCSI\)
EMAIL PROTECTED] Web: http:\\ldsa.sbcld.sbc.com -Original Message- From: Budi Santosa [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 15, 2004 8:19 AM To: Perl Beginners List Subject: Re: time managing Hi Chris, What do you mean with a cron job? thanks Budi --- Chris Devers <[

Re: time managing

2004-09-15 Thread Budi Santosa
Hi Chris, What do you mean with a cron job? thanks Budi --- Chris Devers <[EMAIL PROTECTED]> wrote: > On Wed, 15 Sep 2004, Budi Santosa wrote: > > > Does anybody know how to extract web content for > each > > hour during one day period? > > Write a script using LWP::Simple or other aspects of >

Re: time managing

2004-09-15 Thread Chris Devers
On Wed, 15 Sep 2004, Budi Santosa wrote: > Does anybody know how to extract web content for each > hour during one day period? Write a script using LWP::Simple or other aspects of LWP. Make sure it does what you want. Then install it as a cron job meant to run once an hour. -- Chris Devers

time managing

2004-09-15 Thread Budi Santosa
Hi, Does anybody know how to extract web content for each hour during one day period? thanks Budi __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -- To unsubscribe, e-mail: [EMAIL PROTECTED