📜  command wait bash - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:48.147000             🧑  作者: Mango

代码示例1
sleep NUMBER[SUFFIX]    #Just use this command structure to wait/sleep
#Example:
sleep 5m    #sleeps 5 minutes
sleep 0.1        #sleeps 0.1 seconds or 100 miliseconds
#Suffixes
s - seconds (default)
m - minutes
h - hours
d - days
When no suffix is specified, it defaults to seconds.