Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 709 Bytes

cron.md

File metadata and controls

22 lines (16 loc) · 709 Bytes

Cron

Back{: .button}

Cron is a unix utility to run cron jobs.

# ┌───────────── minute (0 - 59)
# │ ┌───────────── hour (0 - 23)
# │ │ ┌───────────── day of the month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12)
# │ │ │ │ ┌───────────── day of the week (0 - 6) (Sunday to Saturday;
# │ │ │ │ │                                   7 is also Sunday on some systems)
# │ │ │ │ │
# │ │ │ │ │
# * * * * * <command to execute>

Reference