好的,所以我想把一个17.92857的输入加起来,所以在bash中输入17.929.
我的代码到目前为止是:
read input echo "scale = 3; $input" | bc -l
但是,当我使用它的时候,它并没有整合,它返回17.928.
有谁知道任何解决方案吗?
如果输入包含一个数字,则不需要像bc那样的外部命令.你可以使用printf:
原文链接:https://www.f2er.com/bash/386519.htmlprintf "%.3f\n" "$input"
编辑:如果输入是一个公式,那么您应该使用bc作为以下命令之一:
printf "%.3f\n" $(bc -l <<< "$input") printf "%.3f\n" $(echo "$input" | bc -l)