Can I bind times with eggdrop like with cronjobs?
I want a scheduled job to call a certain proc every 4th hour, and instead of doing:
Code: Select all
bind time - "00 00 * * *" proc
bind time - "00 04 * * *" proc
bind time - "00 08 * * *" proc
bind time - "00 12 * * *" proc
bind time - "00 16 * * *" proc
bind time - "00 20 * * *" proc
Code: Select all
bind time - "00 */4 * * *" proc
Code: Select all
bind time - "00 00,04,08,12,16,20 * * *" proc
Thanks.