我正在运行以下cron作业:
#!/bin/bash
touch test.file
cp test.file test.test
使用以下cron:
33 17 * * * * ~/Utils/test.sh
我收到以下错误:
/bin/sh: Applications: command not found
任何帮助?
答案 0 :(得分:2)
我自己的错 - 我在时间定义中有一个额外的*。
33 17 * * * * ~/Utils/test.sh
VS
33 17 * * * ~/Utils/test.sh