bash – 如何在float上使用expr?

前端之家收集整理的这篇文章主要介绍了bash – 如何在float上使用expr?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道这是真的很愚蠢的问题,但我不知道如何在bash中做到这一点:
20 / 30 * 100

应该是66.67,但是expr是说0,因为它不支持float。
什么命令在Linux可以替代expr并做这个平衡?

如bash手册页中所述:

The 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

原文链接:https://www.f2er.com/bash/388106.html

猜你在找的Bash相关文章