我正在努力比较一个bash脚本中的两个浮点数。我有变量,例如。
let num1=3.17648e-22 let num2=1.5
现在,我只想做一个简单的比较这两个数字:
st=`echo "$num1 < $num2" | bc` if [ $st -eq 1]; then echo -e "$num1 < $num2" else echo -e "$num1 >= $num2" fi
不幸的是,我有一些问题,正确的处理num1,可以是“电子格式”。 原文链接:https://www.f2er.com/bash/391193.html