当前位置: 技术问答>linux和unix
编辑了Crontab,没有执行相应的命令
来源: 互联网 发布时间:2016-10-06
本文导语: 在/etc/crontab文件中增加了自己的命令,但发现并没有执行 大虾们帮忙,谢谢! # m h dom mon dow user command 17 * * * * root cd / && run-parts --report /etc/cron.hourly 25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run...
在/etc/crontab文件中增加了自己的命令,但发现并没有执行
大虾们帮忙,谢谢!
最后一行是我加的,应该是每一分钟都执行,不过并没有执行
下面是hello.sh
大虾们帮忙,谢谢!
# m h dom mon dow user command
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
* * * * * root sh /home/vanpersie/hello.sh
#
最后一行是我加的,应该是每一分钟都执行,不过并没有执行
下面是hello.sh
#!/bin/sh
echo "goog morning!" >> /home/vanpersie/morning_$(date +%Y_%m_%d_%H_%M_%S).txt
|
还有你这个
vanpersie@ubuntu:~$ service cron restart
你得用sudo service cron restart
或者以root权限执行service cron restart
vanpersie@ubuntu:~$ service cron restart
你得用sudo service cron restart
或者以root权限执行service cron restart