美文网首页
Linux Shell脚本中的大于、大于等于、小于等表示方法

Linux Shell脚本中的大于、大于等于、小于等表示方法

作者: 静美书斋 | 来源:发表于2019-01-19 16:57 被阅读0次
大于、小于、大于等于、小于等于、不相等
大于 -gt (greater than) 
小于 -lt (less than) 
大于等于 -ge (greater than or equal) 
小于等于 -le (less than or equal) 
不相等 -ne (not equal)

举例

#!/bin/sh

bakdate=`date +%Y%m%d%H%M%S`
date=`date +"%Y-%m-%d %H:%M:%S"`

count=`netstat -an | wc -l`
if [ $count -ge 4200 ];then
    do something
fi

示例中使用到了大于等于(-ge)

相关文章

网友评论

      本文标题:Linux Shell脚本中的大于、大于等于、小于等表示方法

      本文链接:https://www.haomeiwen.com/subject/addzdqtx.html