标签:2.4-cron计划任务
crond 计划任务服务
crontab -l 查看当前用户的计划任务
-e 编辑产前用户的计划任务
crontab -u wyp -l 查看指定用户的计划任务
计划任务配置文件路径/var/spool/cron/用户名
备份计划任务,1:复制/var/spool/cron/用户名
2:crontabl -l > 1.txt
计划任务中,时间的含义:按照 分 时 日 月 周 排列
分0-59 时0-23 日1-31 月1-12 周0-6/1-7
0 0 2 * * 每月2号,0:0分
0 */8 * * * 每隔8小时
0 1,12,18 * * * 1:00 12:00 18:00
30 9-18 * * * 9:30 10:30....18:30
0 5 * * 0 每周日5:00
0 1 14 * * 每月14日1:00
标签:2.4-cron计划任务
原文地址:http://llzdwyp.blog.51cto.com/6140981/1681813