Linux crontab下面这行是什么意思?
Linux crontab what is the meaning of the line below?
我有一条 crontab 行,我想请教一些专家这条行会做什么
10,40 * * * * sh /etc/test/script.sh
请告诉我 10,40 在这个 crontab -e 中会做什么 file.i 我是 crontab 使用的新手
* * * * * command
- - - - -
| | | | |
| | | | +----- day of week (0 - 6) (Sunday = 0)
| | | +------- month (1 - 12)
| | +--------- day (1 - 31)
| +----------- hour (0 - 23)
+------------- min (0 - 59)
每个位置都有一个 comma-separated 值列表。
这将在每小时 :10 和 :40 执行 sh /etc/test/script.sh
。
00:10,00:40,01:10,01:40,...
另外
您可以使用 / 指定间隔,即
*/5 * * * * sh /etc/test/script.sh
到 运行 每 5 分钟一次。
我有一条 crontab 行,我想请教一些专家这条行会做什么
10,40 * * * * sh /etc/test/script.sh
请告诉我 10,40 在这个 crontab -e 中会做什么 file.i 我是 crontab 使用的新手
* * * * * command
- - - - -
| | | | |
| | | | +----- day of week (0 - 6) (Sunday = 0)
| | | +------- month (1 - 12)
| | +--------- day (1 - 31)
| +----------- hour (0 - 23)
+------------- min (0 - 59)
每个位置都有一个 comma-separated 值列表。
这将在每小时 :10 和 :40 执行 sh /etc/test/script.sh
。
00:10,00:40,01:10,01:40,...
另外
您可以使用 / 指定间隔,即
*/5 * * * * sh /etc/test/script.sh
到 运行 每 5 分钟一次。