From c1e07bcb962afccdef143759ed393e36cc627ed8 Mon Sep 17 00:00:00 2001 From: Eric Briand <1011902+ebriand@users.noreply.github.com> Date: Mon, 17 Dec 2018 04:41:46 +0100 Subject: [PATCH] Fix formatting of schedule part (#11665) * Fix formatting of schedule part * Update automated-tasks-with-cron-jobs.md --- .../en/docs/tasks/job/automated-tasks-with-cron-jobs.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/en/docs/tasks/job/automated-tasks-with-cron-jobs.md b/content/en/docs/tasks/job/automated-tasks-with-cron-jobs.md index 364908f01a..d74635e42e 100644 --- a/content/en/docs/tasks/job/automated-tasks-with-cron-jobs.md +++ b/content/en/docs/tasks/job/automated-tasks-with-cron-jobs.md @@ -137,11 +137,11 @@ It takes a [Cron](https://en.wikipedia.org/wiki/Cron) format string, such as `0 The format also includes extended `vixie cron` step values. As explained in the [FreeBSD manual](https://www.freebsd.org/cgi/man.cgi?crontab%285%29): > Step values can be used in conjunction with ranges. Following a range -> with ``/'' specifies skips of the number's value through the -> range. For example, ``0-23/2'' can be used in the hours field to specify +> with `/` specifies skips of the number's value through the +> range. For example, `0-23/2` can be used in the hours field to specify > command execution every other hour (the alternative in the V7 standard is -> ``0,2,4,6,8,10,12,14,16,18,20,22''). Steps are also permitted after an -> asterisk, so if you want to say ``every two hours'', just use ``*/2''. +> `0,2,4,6,8,10,12,14,16,18,20,22`). Steps are also permitted after an +> asterisk, so if you want to say "every two hours", just use `*/2`. {{< note >}} A question mark (`?`) in the schedule has the same meaning as an asterisk `*`, that is, it stands for any of available value for a given field.