I want to know whether there is any easier way to run a job every 20 days. In cron job, if you specify the day parameter as */20, it'll run only on 20th day of each month, IE basically becomes once every month.
The trick from CronJob every 25 minutes work for minutes but cannot apply to day I'm afraid, unless I'm running the cron job every day to check.
That'll be my last resort, but I'm wondering if there is any better/clever way to do it.
More info
This is for renewing purpose, thus can be done sooner than 20 days. But I'm doing it from my laptop, which would be put into sleep most of the time. Thus guarantee execution is a must (which I read that cron is lack of).