crontab [-u user] file crontab [-u user] [ -e | -l | -r ]
* * * * * command
3,15 * * * * command
3,15 8-11 * * * command
3,15 8-11 */2 * * command
3,15 8-11 * * 1 command
0,30 18-23 * * * command
0 23 * * 6 command
* */1 * * * command
0 23-7 * * * command
通常我们在命令的后面加上具体log(没有会自动创建)以及2>&1
,表示将标准输出错误都定向到log中
* * * * * command log_path 2>&1
ubuntu下启动start、停止stop与重启restart
$sudo /etc/init.d/cron start
$sudo /etc/init.d/cron stop
$sudo /etc/init.d/cron restart
原文:http://www.cnblogs.com/George1994/p/7820247.html