linux下的定时操作

来源:互联网 发布:sql认证考试 编辑:程序博客网 时间:2024/06/08 07:49

1,terminal 下面crontab -e

会用vi编辑器打开一个文件,编辑该文件:

分     小时    日       月       星期     命令

0-59   0-23   1-31   1-12     0-6     command     (取值范围,0表示周日一般一行对应一个任务)

1 * * * * command 每小时的第一分钟执行command

*/1 * * * * command 每一分钟执行一次command

编辑完后,wq保存退出。

注意点:

1,时间格式一定要对,提示syntax wrong的时候,肯定是不对的。

2, command提供完整的地址,如/usr/bin/perl 


2,crontab -l

查看用户提交的定时任务。

3, crontab.log

Open the file

/etc/rsyslog.d/50-default.conf

Find the line that starts with:

#cron.*

uncomment that line, save the file, and restart rsyslog:

sudo service rsyslog restart

You should now see a cron log file here:

/var/log/cron.log



参考:

http://blog.csdn.net/hi_kevin/article/details/8983746

http://wenku.baidu.com/link?url=wRhUmV1q0eNiYuPTiKCzAE47jqSPWTQtPQ5ePEB7189JBB8OCuRtU0U4kRCT0bbnrujzUEUaKPc2YKJd2pv7uwB-2WLADQ5n7r78gDkH_CO

http://www.blogjava.net/freeman1984/archive/2010/09/23/332715.html

http://askubuntu.com/questions/56683/where-is-the-cron-crontab-log

0 0