bind time

Old posts that have not been replied to for several years.
Locked
b
bazn
Voice
Posts: 12
Joined: Sun Jul 04, 2004 11:55 am

bind time

Post by bazn »

hi there, i tried to make a proc which executes each day on 23:58

Code: Select all

bind time - "23 58 * * *" stats:daily
proc stats:daily {min hour day month year} {
but it didn't execute c.. what did I wrong? :(

cheers
e
egghead
Master
Posts: 481
Joined: Mon Oct 29, 2001 8:00 pm
Contact:

Re: bind time

Post by egghead »

bazn wrote:hi there, i tried to make a proc which executes each day on 23:58

Code: Select all

bind time - "23 58 * * *" stats:daily
proc stats:daily {min hour day month year} {
but it didn't execute c.. what did I wrong? :(

cheers
Try reading up the bind TIME in tcl-commands.doc.
b
bazn
Voice
Posts: 12
Joined: Sun Jul 04, 2004 11:55 am

Post by bazn »

uh sorry don't get it I can't find anything about "bind time" in my tcl-commands.doc :(

- get it had an old version :>
b
bazn
Voice
Posts: 12
Joined: Sun Jul 04, 2004 11:55 am

Post by bazn »

(37) TIME (stackable)
bind time <flags> <mask> <proc>
proc-name <minute> <hour> <day> <month> <year>

Description: allows you to schedule procedure calls at certain
times. mask matches 5 space separated integers of the form:
"minute hour day month year". minute, hour, day, month have a
zero padding so they are exactly two characters long; year is
extended to four characters in the same way.
Module: core
yea right now i know not more than before :(
e
egghead
Master
Posts: 481
Joined: Mon Oct 29, 2001 8:00 pm
Contact:

Post by egghead »

bazn wrote: yea right now i know not more than before :(
bazn wrote: bind time <flags> <mask> <proc>
proc-name <minute> <hour> <day> <month> <year>

Code: Select all

bind time - "23 58 * * *" stats:daily 
Take a good look and you will know more than before ;)
b
bazn
Voice
Posts: 12
Joined: Sun Jul 04, 2004 11:55 am

Post by bazn »

ahhh lol get it :) thx
Locked