如何用crontab每隔1分钟执行一个命令行脚本
我在/home/下面写了一个a.sh
#!/bin/sh
echo hello > /home/hello.txt
然后在crontab -e中设置了
*/1 * * * * /home/a.sh
为何等了好几分钟,home下面还是没有hello.txt呢?
记录一些技术资料等等
我在/home/下面写了一个a.sh
#!/bin/sh
echo hello > /home/hello.txt
然后在crontab -e中设置了
*/1 * * * * /home/a.sh
为何等了好几分钟,home下面还是没有hello.txt呢?