Merge pull request #133 from Mic92/patch-4

add crontab examples
This commit is contained in:
Chris Lane 2013-12-01 10:00:55 -08:00
commit d8ff70dd57
1 changed files with 20 additions and 0 deletions

20
cheatsheets/crontab Normal file
View File

@ -0,0 +1,20 @@
# set a shell
SHELL=/bin/bash
# crontab format
* * * * * command_to_execute
- - - - -
| | | | |
| | | | +- day of week (0 - 7) (where sunday is 0 and 7)
| | | +--- month (1 - 12)
| | +----- day (1 - 31)
| +------- hour (0 - 23)
+--------- minute (0 - 59)
# example entries
# every 15 min
*/15 * * * * /home/user/command.sh
# every midnight
0 * * * * /home/user/command.sh
# every Saturday at 8:05 AM
5 8 * * 6 /home/user/command.sh