Does anyone know of a good alternative to cron? I would like something that can be run with different time zones.
相关问题
- Is shmid returned by shmget() unique across proces
- how to get running process information in java?
- Display time in local timezone when querying Influ
- Error building gcc 4.8.3 from source: libstdc++.so
- Why should we check WIFEXITED after wait in order
MacOS X has replaced
cron
,at
,xinet
, andwatchdog
with open sourcelaunchd
(Wikipedia). Process properties are described in a XML file, which allows passing arguments. Switching timezones should trivial.For the future readers, consider Chronos, developed and open sourced by AirBnB. check it out at http://nerds.airbnb.com/introducing-chronos/
Just for the sake of completeness, cronie supports the
CRON_TZ
variable.You may consider Quartz (a java-based solution), that can take advantage of
Date
build in the appropriate TimeZone.