如何理解下面的crontab?我知道结构但找不到合适的来源来清楚地解释它

How to understand the following Crontab? i know the structure but can't find proper source to clearly explain it

我只是第一次尝试使用 cron 作业,需要了解如何创建我需要的模式的背景信息。

只需要一个例子的解释。谢谢。

m     h  dom mon dow
35   */8  *   *   * 
9,35   *  *   *   *
47     6  *   *   7
52     6  1   *   *

解释如下:

35   */8  *   *   *

运行每8小时35t分钟:0,8,16

9,35   *  *   *   *

运行 每 9 和 35 分钟,每小时,每天

47     6  *   *   7

运行 在星期日 6:47

52     6  1   *   *

运行 在 6:52 每个月的第一天