whenever
whenever copied to clipboard
create end of day of every 2 month
how to create every 2 month, end of day, 12am to run cron? 0 24 28,29,30 * like this?
hi @jinyi0313
From the examples given : https://github.com/javan/whenever#example-schedulerb-file
You can specify a raw cron syntax too
every '0 24 28,29,30 *' do
command "echo 'you can use raw cron syntax too'"
end