如何用crontab每隔1分钟执行一个命令行脚本

我在/home/下面写了一个a.sh

#!/bin/sh
echo hello > /home/hello.txt

然后在crontab -e中设置了

*/1 * * * * /home/a.sh

为何等了好几分钟,home下面还是没有hello.txt呢?

指定一下用什么运行

*/1 * * * * sh /home/a.sh
来源:https://segmentfault.com/q/1010000002516428?sort=created

你可能感兴趣的:(linux)