码迷,mamicode.com
首页 > 系统相关 > 详细

linux基础二十七

时间:2016-08-03 15:48:49      阅读:320      评论:0      收藏:0      [点我收藏+]

标签:at

任务计划
    at
    at time
    at >
    at + d 提交任务
    
    at作业队列:使用单个字母表示
    at -q b ...  b队列
    at -l = atq 查看作业
    at -d job NUM 删除一个尚未执行的作业
    atrm JOB_NAME
    at 批模式
        at -f at_job_file TIME
        TIME: 模糊时间 now , noon , midnight , teatime , tomorrow 
        
    mail命令
        交互式模式接收邮件
        交互式模式发送邮件
        -s "Subject"
        < file
        
    通过输出重定向拒收邮件
        &> /dev/null
        > /dev/null 2 >&1
        MAILTO = ""
        
   batch 与at不同的是不能指定时间,它自动选择系统空闲时执行
   
   周期性任务计划 cron
    crond 守护进程
    
    系统cron 
        文件 /etc/cron
        
    用户cron
        /var/spool/cron/username , /etc/cron
        时间表示法:(user-name command to be excuted)
            分  时  日  月  周 
            *   *   *   *   *
            
            eg: */3 * * * * 每隔3分钟执行
            
       时间表示法:
           1 每个时间位都应该使用其可用的有效取值范围内的值
           2 某个时间位上的*表示对应的所有有效取值
           3 - 表示连续的时间点取值(相邻点)
           4 ,表示离散的时间点取值
           5 /# 表示在指定时间点内每隔#时间执行一次,eg: 5 - 45/3 * * * *

linux基础二十七

标签:at

原文地址:http://linux16.blog.51cto.com/2477884/1833779

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!