我需要设置一个在晚上8点到晚上8点之间每15分钟运行一次的cron作业。 谷歌搜索后,我决定以这种方式使用它:
*/15 8-20 * * * /path/of/shellscript.sh
但是,cron没有被触发。 什么应该是正确的表达?
编辑:
*/15 8-19 * * * /path/of/shellscript.sh
00 20 * * * /path/of/shellscript.sh
cron执行。但是日志显示此错误:
Mailed 62 bytes of output but got status 0*0047
但是,如果我手动运行脚本,它执行得很好!
答案 0 :(得分:0)
通过设置对sh文件和jar文件的权限来解决问题
chmod 0777 shellscript.sh
chmod 0664 jarfile.jar