我知道这是真的很愚蠢的问题,但我不知道如何在bash中做到这一点:
20 / 30 * 100
应该是66.67,但是expr是说0,因为它不支持float。
什么命令在Linux可以替代expr并做这个平衡?
如bash手册页中所述:
原文链接:https://www.f2er.com/bash/388106.htmlThe shell allows arithmetic expressions to be evaluated,under certain circumstances…Evaluation is done in fixed-width integers with no check for overflow,though division by 0 is trapped and flagged as an error.
您可以提前乘以100,以获得更好的部分结果:
let j=20*100/30 echo $j
66
或者以10的更高倍数,并想象它所属的小数位:
let j=20*10000/30 echo $j
66666