奇怪的cron行为......神秘"应用"未找到

时间:2017-02-01 22:36:57

标签: macos cron

我正在运行以下cron作业:

#!/bin/bash
touch test.file
cp test.file test.test

使用以下cron:

33 17 * * * * ~/Utils/test.sh

我收到以下错误:

/bin/sh: Applications: command not found

任何帮助?

1 个答案:

答案 0 :(得分:2)

我自己的错 - 我在时间定义中有一个额外的*。

33 17 * * * * ~/Utils/test.sh

VS

33 17 * * * ~/Utils/test.sh