Skip to content

Instantly share code, notes, and snippets.

View Fleaurent's full-sized avatar
🚀
It's not Rocket Science!

Fleaurent

🚀
It's not Rocket Science!
View GitHub Profile
@Fleaurent
Fleaurent / crontab_header.sh
Created September 9, 2023 15:34 — forked from wesleyit/crontab_header.sh
A default crontab header that will make the life easier for those who don't remember cron fields or keywords.
## CRONTAB HINTS AND TIPS
##
##
## Entry Description Equivalent To
## @yearly (or @annually) Run once a year at midnight in the morning of January 1 0 0 1 1 *
## @monthly Run once a month at midnight in the morning of the first of the month 0 0 1 * *
## @weekly Run once a week at midnight in the morning of Sunday 0 0 * * 0
## @daily Run once a day at midnight 0 0 * * *
## @hourly Run once an hour at the beginning of the hour 0 * * * *
## @reboot Run at startup @reboot