cron 应用

我是在 ubuntu 上使用的

安装cron or crontab

装好后可以 ps aux | grep 'cron'

查看到。

配置 cron .log 可以看我的转载文章有讲到。

http://blog.csdn.net/wide288/article/details/8765951

方便查找问题

注意:

1, shell 文件位置引用时,要写绝对路径。

2, 要写小时的话,分也要写0或具体时间,不能写* ,那样可能会每分钟都执行。

 crontab -l

查看计划任务表

crontab -e 编辑

sudo service cron restart 重启。即可了。

你可能感兴趣的:(cron 应用)