linux下写脚本时-gt或-lt是什么意思?
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
Linux下有一些判断比较的逻辑,下面解释一下相关关键字的意思:
-gt是大于的意思。
-eq是等于的意思。
-ne是不等于的意思。
-ge是大于等于的意思。
-lt是小于的意思。
-le是小于等于的意思。
下面一段代码:
hour=`date '+%H'`
echo $hour
if [ $hour -gt 21 ] && [ $hour -lt 5 ]
then
echo "Night"
sleep 5
else
echo "Day"
sleep 1
fi
这段代码是对现在时间进行判断,如果当前时间在5:00-21:00之间就是白天睡眠1秒,否则就是夜晚睡眠5秒。
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:4 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)