From ace09a9c9b4b0eb27859e1fa9b9831043907ae98 Mon Sep 17 00:00:00 2001 From: Kostyantyn Moroz Date: Mon, 14 Mar 2016 19:25:51 +0000 Subject: [PATCH] Added format of crontab file --- pages/common/crontab.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pages/common/crontab.md b/pages/common/crontab.md index 6d4faa75e..51dc7204e 100644 --- a/pages/common/crontab.md +++ b/pages/common/crontab.md @@ -13,3 +13,16 @@ - Remove all cron jobs for the current user: `crontab -r` + +- Configuration file: + +``` +# ┌───────────── min (0 - 59) +# │ ┌────────────── hour (0 - 23) +# │ │ ┌─────────────── day of month (1 - 31) +# │ │ │ ┌──────────────── month (1 - 12) +# │ │ │ │ ┌───────────────── day of week (0 - 6) (0 to 6 are Sunday to Saturday, or use names; 7 is Sunday, the same as 0) +# │ │ │ │ │ +# │ │ │ │ │ +# * * * * * command to execute +```