From 60208b4338113337050adb3c58080ebaa4dbf136 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=83=9F=E8=8D=89=E7=9A=84=E9=A6=99=E5=91=B3?= Date: Tue, 15 Nov 2022 17:44:09 +0800 Subject: [PATCH] Update sleep.md (#448) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 清晰文档实例, 并添加`infinity`参数选项 --- command/sleep.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/command/sleep.md b/command/sleep.md index 6709eeed73e..0310b2353dc 100644 --- a/command/sleep.md +++ b/command/sleep.md @@ -15,9 +15,13 @@ sleep(参数) ### 参数 -时间:指定要暂停时间的长度。 +时间:指定要暂停时间的长度, 包括如下: -时间长度,后面可接 s、m、h 或 d,其中 s 为秒,m 为 分钟,h 为小时,d 为日数。 +* `2s`: 2秒 +* `2m`: 2分钟 +* `2h`: 2小时 +* `2d`: 2天 +* `infinity`: 永久 ### 实例 @@ -36,4 +40,3 @@ for ((i=0;$i<=100;i++)) echo ``` -