From bb324e94a4c53145f8cc99b9c382a7792978d85c Mon Sep 17 00:00:00 2001 From: Chris Lane Date: Sun, 29 May 2016 21:03:58 -0400 Subject: [PATCH] Issue #278 Fixed a technical innacuracy in the `crontab` cheatsheet. --- cheat/cheatsheets/crontab | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cheat/cheatsheets/crontab b/cheat/cheatsheets/crontab index d567c20..01c75ed 100644 --- a/cheat/cheatsheets/crontab +++ b/cheat/cheatsheets/crontab @@ -14,7 +14,9 @@ SHELL=/bin/bash # example entries # every 15 min */15 * * * * /home/user/command.sh + # every midnight -0 * * * * /home/user/command.sh +* 0 * * * /home/user/command.sh + # every Saturday at 8:05 AM 5 8 * * 6 /home/user/command.sh