i want a proc to be run every thursday at a specific time say 6.15pm.
how should the bind look like?
Code: Select all
bind time - "15 18 thu * *" <proc-name>
can anyone tell me please
Code: Select all
bind time - "15 18 thu * *" <proc-name>
Code: Select all
bind time - "15 6 *" thurs:bind
proc thurs:bind {min hour day month year} {
if {[clock format [clock seconds] "%A"] != "Thursday"} { return }
BLAH
}
Code: Select all
bind time - "15 6 *" thurs:bind
proc thurs:bind {min hour day month year} {
if {[clock format [clock seconds] "%A"] != "Thursday"} { return }
BLAH
}
Code: Select all
if {[clock format [clock seconds] "%A"] != "Thursday"} { return }
Code: Select all
if {[clock format [clock seconds] -format "%A"] != "Thursday"} { return }