当前位置: 首页 > news >正文

linux 定时任务

crontab -e
在里面添加 需要定时的任务
如:
58 23 * * * bash /home/log_daochu2.sh > /home//log.log 2>/home/log_error.log

SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root# For details see man 4 crontabs# 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 execute#每天 每隔5,10,15,20,30分钟执行一次定时任务
*/5 * * * * root /data0/myshell/collect5m.sh
#*/10 * * * * root /data0/myshell/collect10m.sh
#*/15 * * * * root /data0/myshell/collect15m.sh
#*/20 * * * * root /data0/myshell/collect20m.sh
#*/30 * * * * root /data0/myshell/collect30m.sh

http://www.mrgr.cn/news/2878.html

相关文章:

  • 开始使用 AWS SAM CLI
  • 【漏洞复现】微商城系统 goods SQL注入漏洞
  • 高性能web服务器2——Nginx概述
  • springMVC访问不同位置的静态资源
  • Jmeter基础与概念详解
  • IP报文详解
  • datasets库一些基本方法:filter、map、select等
  • 【秋招笔试】8.18大疆秋招(第三套)-三语言题解
  • SpringSecurity
  • 实习三十:ansible
  • 【中项第三版】系统集成项目管理工程师 | 第 15 章 组织保障
  • C++特殊类设计
  • 【MySQL】表的约束
  • ComfyUI的部署,Ubuntu22.04系统下——点动科技
  • 基于Conda的Python版本管理与Python包管理
  • 探索顶级PDF水印API:PDFBlocks(2024年更新)
  • Flutter Web 正式官宣弃用 HTML renderer , Canvas 路线成为唯一
  • 统一服务入口-Gateway(一)
  • 使用 Python 爬虫进行网站流量分析:Referer 头的利用
  • LeetCode239.滑动窗口最大值