====== Ubuntu - Cron - Schedule Yearly Cron Jobs ======
Crontab allows users to schedule yearly cron jobs.
It executes these jobs on the first minute of each year.
These commands may come in handy to make system-wide changes or to send new-year greetings.
@yearly /scripts/script.sh
The above command is equivalent to the following commands.
0 0 1 1 * /scripts/script.sh
@annually /scripts/script.sh