我开始学习为bash终端编写脚本,但我无法弄清楚如何让比较正常工作。我正在使用的脚本是:
echo "enter two numbers";
read a b;
echo "a=$a";
echo "b=$b";
if [ $a \> $b ];
then
echo "a is greater than b";
else
echo "b is greater than a";
fi;
问题在于它比较了第一个数字的数字,即9大于10,但是1大于09.
如何将数字转换为类型以进行真正的比较?
答案 0 :(得分:690)
在bash中,您应该在arithmetic context:
中办理入住手续if (( a > b )); then
...
fi
对于不支持(())
的POSIX shell,您可以使用-lt
和-gt
。
if [ "$a" -gt "$b" ]; then
...
fi
您可以使用help test
获取完整的比较运算符列表。
答案 1 :(得分:126)
简单明了
#!/bin/bash
a=2462620
b=2462620
if [ "$a" -eq "$b" ];then
echo "They're equal";
fi
如果您想在精彩的Bash Scripting世界中进行更多的数字比较,可以查看this cheatsheet。
很快,整数只能与:
进行比较-eq # equal
-ne # not equal
-lt # less than
-le # less than or equal
-gt # greater than
-ge # greater than or equal
答案 2 :(得分:36)
有些人可能不知道有一件好事:
echo $(( a < b ? a : b ))
此代码将打印a
和b
答案 3 :(得分:17)
在Bash中,我更喜欢这样做,因为它更像是一个条件操作,不像使用更多算术的(( ))
。
[[ N -gt M ]]
除非我做复杂的事情,比如
(( (N + 1) > M ))
但每个人都有自己的偏好。可悲的是,有些人强加了他们的非官方标准。
<强>更新强>
你实际上也可以这样做:
[[ 'N + 1' -gt M ]]
除了算术之外,还允许您添加除[[ ]]
之外的其他内容。
答案 4 :(得分:5)
此代码也可以比较浮点数。它使用的是awk(它不是纯粹的bash),但这不应该是一个问题,因为awk是一个标准的POSIX命令,很可能默认随操作系统一起提供。
$ awk 'BEGIN {return_code=(-1.2345 == -1.2345) ? 0 : 1; exit} END {exit return_code}'
$ echo $?
0
$ awk 'BEGIN {return_code=(-1.2345 >= -1.2345) ? 0 : 1; exit} END {exit return_code}'
$ echo $?
0
$ awk 'BEGIN {return_code=(-1.2345 < -1.2345) ? 0 : 1; exit} END {exit return_code}'
$ echo $?
1
$ awk 'BEGIN {return_code=(-1.2345 < 2) ? 0 : 1; exit} END {exit return_code}'
$ echo $?
0
$ awk 'BEGIN {return_code=(-1.2345 > 2) ? 0 : 1; exit} END {exit return_code}'
$ echo $?
要缩短使用时间,请使用此功能:
compare_nums()
{
# Function to compare two numbers (float or integers) by using awk.
# The function will not print anything, but it will return 0 (if the comparison is true) or 1
# (if the comparison is false) exit codes, so it can be used directly in shell one liners.
#############
### Usage ###
### Note that you have to enclose the comparison operator in quotes.
#############
# compare_nums 1 ">" 2 # returns false
# compare_nums 1.23 "<=" 2 # returns true
# compare_nums -1.238 "<=" -2 # returns false
#############################################
num1=$1
op=$2
num2=$3
E_BADARGS=65
# Make sure that the provided numbers are actually numbers.
if ! [[ $num1 =~ ^-?[0-9]+([.][0-9]+)?$ ]]; then >&2 echo "$num1 is not a number"; return $E_BADARGS; fi
if ! [[ $num2 =~ ^-?[0-9]+([.][0-9]+)?$ ]]; then >&2 echo "$num2 is not a number"; return $E_BADARGS; fi
# If you want to print the exit code as well (instead of only returning it), uncomment
# the awk line below and comment the uncommented one which is two lines below.
#awk 'BEGIN {print return_code=('$num1' '$op' '$num2') ? 0 : 1; exit} END {exit return_code}'
awk 'BEGIN {return_code=('$num1' '$op' '$num2') ? 0 : 1; exit} END {exit return_code}'
return_code=$?
return $return_code
}
$ compare_nums -1.2345 ">=" -1.2345 && echo true || echo false
true
$ compare_nums -1.2345 ">=" 23 && echo true || echo false
false
答案 5 :(得分:2)
如果您也想使用浮点数,则括号内容(例如[[ $a -gt $b ]]
或(( $a > $b ))
)是不够的;它会报告语法错误。如果要比较浮点数或浮点数与整数,可以使用(( $(bc <<< "...") ))
。
例如,
a=2.00
b=1
if (( $(bc <<<"$a > $b") )); then
echo "a is greater than b"
else
echo "a is not greater than b"
fi
您可以在if语句中包含多个比较。例如,
a=2.
b=1
c=1.0000
if (( $(bc <<<"$b == $c && $b < $a") )); then
echo "b is equal to c but less than a"
else
echo "b is either not equal to c and/or not less than a"
fi
如果要检查数字变量(是否为整数)是否在数字范围内,这将很有帮助。
答案 6 :(得分:0)
我通过使用一个小函数将版本字符串转换为可以比较的普通整数值来解决这个问题:
directory index of "/var/www/api/latest" is forbidden, client:
172.17.0.1, server: localhost, request: "HEAD /latest/api/ HTTP/1.1",
host: "localhost"
这有两个重要的假设:
例如
function versionToInt() {
local IFS=.
parts=($1)
let val=1000000*parts[0]+1000*parts[1]+parts[2]
echo $val
}
测试versionToInt 12.34.56 # --> 12034056
versionToInt 1.2.3 # --> 1002003
命令是否满足最低要求的示例...
npm
答案 7 :(得分:0)
如果你有浮动,你可以写一个函数,然后使用它。例如。
#!/bin/bash
function float_gt() {
perl -e "{if($1>$2){print 1} else {print 0}}"
}
x=3.14
y=5.20
if [ $(float_gt $x $y) == 1 ] ; then
echo "do stuff with x"
else
echo "do stuff with y"
fi