Crontab

罗晓磊 · October 1, 2019

crontab介绍

用于创建定时执行的任务 image

常用命令

  • 创建cron任务 ``` crontab -e 进入vi模式,输入cron表达式与要执行的命令即可
          • echo ‘crontest’ » ~/crontest.txt ```
  • 查看cron任务
    crontab -l
    
  • 启动cron
    whereis cron
    sudo /usr/sbin/cron start
    
  • Linux查看crontab执行日志
    cat /var/log/corn
    

示例

* * * * * /home/dan/bin/script.sh: 每分钟运行。
0 * * * * /home/dan/bin/script.sh: 每小时运行。
0 0 * * * /home/dan/bin/script.sh: 每天零点运行。
0 9,18 * * * /home/dan/bin/script.sh: 在每天的9AM和6PM运行。
0 9-18 * * * /home/dan/bin/script.sh: 在9AM到6PM的每个小时运行。
0 9-18 * * 1-5 /home/dan/bin/script.sh: 周一到周五的9AM到6PM每小时运行。
*/10 * * * * /home/dan/bin/script.sh: 每10分钟运行。

参考链接

Twitter, Facebook