- 论坛徽章:
- 0
|
急切请教各位高手:如何控制脚本的执行?
没有用循环,加入到/etc/crontab中,让它5分钟执行一次。。
我的crontab如下 、
- # for vixie cron
- #
- # $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/files/crontab-3.0.1-r4,v 1.1 2005/03/04 23:59:48 ciaranm Exp $
- #
- #
- # Global variables
- SHELL=/bin/bash
- PATH=/sbin:/bin:/usr/sbin:/usr/bin
- MAILTO=root
- HOME=/
- # check scripts in cron.hourly, cron.daily, cron.weekly and cron.monthly
- 0 * * * * root rm -f /var/spool/cron/lastrun/cron.hourly
- 1 3 * * * root rm -f /var/spool/cron/lastrun/cron.daily
- 15 4 * * 6 root rm -f /var/spool/cron/lastrun/cron.weekly
- 30 5 1 * * root rm -f /var/spool/cron/lastrun/cron.monthly
- */10 * * * * root test -x /usr/sbin/run-crons && /usr/sbin/run-crons
- ####### mystar ###########
- 5 * * * * root /root/keeponline.sh
- ############################
复制代码
然后我执行
#crontab /etc/crontab
但是5min后发现keeponline.sh都没有执行。。 |
|