Crontab – tips and reference

Crontab tips edit – “contrab -e” to list “crontab -l” Link to Manpage online – https://man7.org/linux/man-pages/man5/crontab.5.html   // shamelessly stolen from stackoverflow crontab does not understand “intervals”, it only understands “schedule” valid hours: 0-23 — valid minutes: 0-59 example #1 30 * * * * your_command this means “run when the minute of each hour is 30” (would run at: 1:30, […]