Code: Select all
bind time -|- {00 * * * *} update:proc
That I know, then it will run the script every hour, but need to know how it can check witch month it is so it can update monght. same for year and hour also.GeeX wrote:Use:
For further infos check your docs folderCode: Select all
bind time -|- {00 * * * *} update:proc
The above may be a little more descriptive.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. flags are ignored.
Thanks for thatAlchera wrote:The above may be a little more descriptive.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. flags are ignored.