# trivial crontab example
# run the following command on reboot
@reboot echo cron: reboot
# run the following commands every minute
* * * * * echo cron: test 1
* * * * * echo cron: test 2
* * * * * echo cron: test 3
# run the following command every two minutess
*/2 * * * * echo cron: two minutes have elapsed
