美文网首页
第九课:Linux任务计划crontab

第九课:Linux任务计划crontab

作者: Shine_ahuii | 来源:发表于2018-04-22 18:16 被阅读0次

    1.crontab格式

    \# Example of job definition:
    \# .---------------- minute (0 - 59)
    \# |  .------------- hour (0 - 23)
    \# |  |  .---------- day of month (1 - 31)
    \# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
    \# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
    \# |  |  |  |  |
    \# *  *  *  *  * user-name command to be executed
    

    2.crontab使用

    $ crontab -e

    在最后一行添加命令,如:每分钟我们会在/home/shiyanlou目录下创建一个以当前的年月日时分秒为名字的空白文件

    $*/1 * * * * touch /home/shiyanlou/$(date +\%Y\%m\%d\%H\%M\%S)

    当然我们也可以通过这样的一个指令来查看我们添加了哪些任务

    $ crontab -l

    相关文章

      网友评论

          本文标题:第九课:Linux任务计划crontab

          本文链接:https://www.haomeiwen.com/subject/mvdaqxtx.html