我在Google Cloud的计算引擎实例中设置了一个cron作业。
假设每天早上7:47运行。但是每次我检查文件是否在7:48执行时都不起作用。
helloworld.sh文件的代码在这里
echo "helloworld" + "$(date)" > helloworld.txt
我已将root设置为root,并将root作为root用户设置为cron作业。有什么想法吗?
答案 0 :(得分:0)
cron作业错误,因为您需要在命令中使用绝对路径。尝试:
/bin/bash /home/username/helloworld.sh