The bind itself seems to work fine:
Code: Select all
bind cron - {* * * * *} brick:cron
However, the proc is giving me weird results. My test proc looks like so:
Code: Select all
proc brick:cron {min hr day mo yr} {
putlog "${hr}:${min} ${mo}.${day} ${yr}"
}
10:33 10.16 02
Why is the year showing up as "02"? My server's date command returns "Tue Oct 16 10:33:42 EDT 2012", so that's definitely not the year (unless it's giving me only the century portion, reversed o_O).
What makes this more confusing is that the documentation I found at http://www.eggheads.org/support/egghtml ... binda_cron shows the syntax as
Code: Select all
proc-name <minute> <hour> <day> <weekday> <year>
Thanks!