LINUX定时任务

发布时间 2023-08-17 23:35:03作者: 过·客
  1. 编辑定时任务

    crontab -e #编辑cron任务模式
    
  2. 添加定时任务

    00 22 * * * /home/oracle/orabackup.sh
    
  3. 重启定时任务服务

    service crond restart #重启crontab服务
    
  4. 查看定时任务列表

    crontab -l