Created
October 16, 2010 03:50
-
-
Save thekindofme/629386 to your computer and use it in GitHub Desktop.
crontab file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# m h dom mon dow command | |
#task1 | |
0,30 05-07 * * * /home/foobar/script task1 | |
0,10,20,30,40,50 08-18 * * * /home/foobar/script task1 | |
0,30 19-21 * * * /home/foobar/script task1 | |
#task2 | |
0,30 19-21 * * * /home/foobar/script task2 | |
#clean up the logs # once a week every saturday, at 00:00 (midnight) | |
0 0 * * 6 /home/foobar/script task3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment