Files
doc/docs/tutorial-extras/8-crontab.md
2022-09-26 18:01:58 +08:00

545 B
Raw Blame History

sidebar_position
sidebar_position
8

定时任务

优秀的Linux crontab任务管理器

使用基础

  • 编辑任务管理器
crontab -e
  • 浏览任务管理器
crontab -l

添加任务

  • 实例1每1分钟执行一次myCommand
* * * * * myCommand
  • 实例2每晚的21:30重启smb
30 21 * * * systemctl restart smbd
  • 实例3每一小时重启smb
0 */1 * * * systemctl restart smbd

学习教材

www.runoob.com