参考:
19. crontab 定时任务
- 注意事项:
1 环境变量
2 执行的用户权限
个人把
0,15,30,45 18-06 * * * /bin/echo 'date' > /dev/console
改为
* * * * * /bin/echo 'date' > $HOME/hello
即每一分都把 date
写入 home
目录下的 hello
文件(每一次date
的写入会覆盖文件)
- ubuntu下启动、停止与重启cron:
$sudo /etc/init.d/cron start
$sudo /etc/init.d/cron stop
$sudo /etc/init.d/cron restart
网友评论