This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.
For more information, see this announcement post . Click the X in the top right-corner of this box to dismiss this message.
Old posts that have not been replied to for several years.
bazn
Voice
Posts: 12 Joined: Sun Jul 04, 2004 11:55 am
Post
by bazn » Thu Oct 21, 2004 4:33 am
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
egghead
Master
Posts: 481 Joined: Mon Oct 29, 2001 8:00 pm
Contact:
Post
by egghead » Thu Oct 21, 2004 4:46 am
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.
bazn
Voice
Posts: 12 Joined: Sun Jul 04, 2004 11:55 am
Post
by bazn » Thu Oct 21, 2004 4:59 am
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 :>
bazn
Voice
Posts: 12 Joined: Sun Jul 04, 2004 11:55 am
Post
by bazn » Thu Oct 21, 2004 5:04 am
(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
egghead
Master
Posts: 481 Joined: Mon Oct 29, 2001 8:00 pm
Contact:
Post
by egghead » Thu Oct 21, 2004 5:13 am
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
bazn
Voice
Posts: 12 Joined: Sun Jul 04, 2004 11:55 am
Post
by bazn » Thu Oct 21, 2004 5:15 am
ahhh lol get it
thx