Skip to content

Instantly share code, notes, and snippets.

@chrisshroba
Created January 24, 2022 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisshroba/3e77c7832d1df5894127718b12b67653 to your computer and use it in GitHub Desktop.
Save chrisshroba/3e77c7832d1df5894127718b12b67653 to your computer and use it in GitHub Desktop.
Cron Refresher (to be put at the top of my crontab)
# Cron Syntax Refresher
#
# /- Minute (0-59)
# | /- Hour (0-23)
# | | /- Day (1-31)
# | | | /- Month (1-12)
# | | | | /- Day of Week (0-7: 0 and 7 are Sunday)
# * * * * *
#
# * is any value
# , is a value list
# - is a range of values
# / is a step (e.g. 2/3 means every third increment starting at 2.)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment