✏️
Cheatsheet
  • Cheatsheet
  • Development
    • Git
    • Java
  • Others
    • Bash Kung-fu
      • Screen
    • Certificates
    • Cron
    • Docker
    • Logs
  • Hacking-CTF
    • CTF
Powered by GitBook
On this page

Was this helpful?

  1. Others

Cron

PreviousCertificatesNextDocker

Last updated 4 years ago

Was this helpful?

Format of cron

minute hour day_of_month month day_of_week  command_to_execute

# Possible values: 
    *	any value
    ,	value list separator
    -	range of values
    /	step values
    @yearly	(non-standard)
    @annually	(non-standard)
    @monthly	(non-standard)
    @weekly	(non-standard)
    @daily	(non-standard)
    @hourly	(non-standard)
    @reboot	(non-standard)

Web to test it:

Examples:

30 2 * * 1  # At 02:30 on Monday.
https://crontab.guru/