gpt4 book ai didi

linux - bash linux 中的 Ceil 只有 float

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:14:45 27 4
gpt4 key购买 nike

在 linux bash 中,我只想获取给定数字的下一个整数,前提是它是 float 。我试过

count=$((${count%.*} + 1));

但是对于上面的代码,它始终(即使数字不是 float )给出下一个整数。

预期结果:

345.56 => 346
345.12 => 346
345 => 345

谁能帮我找到解决方案?

提前致谢。

最佳答案

你可以使用

NUMBER=365
perl -w -e "use POSIX; print ceil($NUMBER/1.0), qq{\n}"

给变量赋值

MYVAR=$(perl -w -e "use POSIX; print ceil($NUMBER/1.0), qq{\n}")

关于linux - bash linux 中的 Ceil 只有 float ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54462465/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com