How to run cron every day?
Any of the following entries will run cron once at midnight.
0 0 * * * <command-to-run>
or
@daily <command-to-run>
or
@midnight <command-to-run>
