sleep表示延迟多少时间,多用于shell脚本中
语法:sleep number
其中number可为s,m,h,d
s 秒
m 分
h 时
d 天
如:
[root@iZ28dr3wqtiZ shell]# cat test.sh
#!/bin/bash
echo "hello"
sleep 3s
echo "world"
[root@iZ28dr3wqtiZ shell]# bash test.sh
hello
这中间经过了三秒
world
阅读(522) | 评论(0) | 转发(0) |