Bladeren bron

:pencil2: 修正crontab有关内容

DESKTOP-010SCVV\Ghost 6 jaren geleden
bovenliggende
commit
a538a7e7d5
1 gewijzigde bestanden met toevoegingen van 3 en 1 verwijderingen
  1. 3 1
      crontab.md

+ 3 - 1
crontab.md

@@ -68,7 +68,9 @@ __例子__
 
 01 * 2 * * ~/http.sh #每月2号第一分钟执行一次 ~/http.sh shell 文件
 
-* 2,3 * * * ~/http.sh #每天凌晨2点,3点 执行一次 ~/http.sh shell 文件
+0 2,3 * * * ~/http.sh #每天凌晨2点,3点 执行一次 ~/http.sh shell 文件
+
+* 2,3 * * * ~/http.sh #每天凌晨2点,3点每分钟 执行一次 ~/http.sh shell 文件
 
 10 * * * 1-5 root /usr/local/bin/php /home/ubuntu/demo.php #周一到周五第10分钟以 root 用户 php 命令去执行一次 demo.php 文件