我在/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呢?
chmod +x a.sh
/home/a.sh
来验证/1
,直接5个星号就好
指定一下用什么运行