Fork me on GitHub

Project Notes

#231

All about cron and OS-managed scheduled tasks

Notes

cron is the classic and default job scheduler on Unix-like operating systems.

Schedules are defined a simple text crontab file. Users can have their own individual crontab files, or jobs can be defined in the system level /etc/crontab or /etc/cron.d

crontab format:

# ┌───────────── 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>

See crontab.guru for an easy way of creating the precise schedule format.

ruby - Whenever

The whenever gem is perhaps the most common way of creating and deploying schedules for ruby-based applications. It allows schedules to be defines with a friendly DSL.

Credits and References

About LCK#231 tools
Project Source on GitHub Return to the Project Catalog

LittleCodingKata is my collection of programming exercises, research and code toys broadly spanning things that relate to programming and software development (languages, frameworks and tools).

These range from the trivial to the complex and serious. Many are inspired by existing work and I'll note credits and references where applicable. The focus is quite scattered, as I variously work on things new and important in the moment, or go back to revisit things from the past.

This is primarily a personal collection for my own edification and learning, but anyone who stumbles by is welcome to borrow, steal or reference the work here. And if you spot errors or issues I'd really appreciate some feedback - create an issue, send me an email or even send a pull-request.

LittleArduinoProjects LittleModelArt More on my blog