Hello,
Does bind time accept values the same way as crontab does?
Here's what I'm doing:
I have a small script I drew up, and it uses :
bind time - "01 * * * *" do_announce
just fine. The procedure does an announcement in a channel, once per hour.
I'd like to experiment with making that once every other hour.
And other variations too.
Perhaps once every 3 or 4 hours.
Whatever... until I get it like I like it.
And I wondered if I could use entries like I found here:
http://ss64.com/bash/crontab.html
Would it be?:
bind time - "* 01,03,05,07,09,11,13,15,17,19,21,23 * * *" do_announce
If not, ...if bind time does not accept that, how would I go about it?
Thanks