设置cron作业时出错?

时间:2015-10-29 13:45:42

标签: unix cron

我希望在每周一和周四凌晨1点安排cron工作。我使用了以下命令但是我收到了错误。

0 1 * *星期一,星期四/home/abc/xyz.ksh

crontab:前一行错误;在线发现意外的角色。 crontab:在输入中检测到错误,没有生成crontab文件。

有人可以告诉我如何设置吗?

2 个答案:

答案 0 :(得分:2)

请改为尝试:

0 1 * * 1,2 /home/abc/xyz.ksh >/dev/null 2>&1

此致

答案 1 :(得分:1)

0 1 * * 1,4 /home/abc/xyz.ksh >/dev/null 2>&1

Where 1 and 4 translates to Monday and Thursday respectively. Valid range is 0 to 6 with 0 being Sunday and 6 representing Saturday