我从bash开始,发现以下内容:
if test $first -lt $second
then
echo $first is lower than $second
else
if test $first -gt $second
then
echo $first is higher than $second
else
echo $first and $second are equals
fi
fi
对于阅读脚本并执行它,我知道它的作用,但不知道-lt和-gt的作用。
有人可以告诉我这种“工具”的名称是什么,它们(-lt和-gt)的作用是什么?谢谢!
echo
代码中的语句回答了您的问题。