如何将 bc 计算通过管道传输到 shell 变量中

发布于 2024-11-01 17:01:08 字数 374 浏览 2 评论 0原文

我在 Linux shell 上进行了计算,类似于这样

echo "scale=4;3*2.5" |bc

,它给了我一个结果,现在我喜欢将该计算的结果通过管道传输到一个变量中,以便我稍后可以在另一个命令中使用它,

通过管道传输到文件工作中,但不是管道到变量中,

echo "scale=4 ; 3*2.5" | bc > test.file

所以在伪代码中我希望做这样的事情

set MYVAR=echo "scale=4 ; 3*2.5" | bc ; mycommand $MYVAR

有什么想法吗?

I have a calculation on a Linux shell, something like this

echo "scale=4;3*2.5" |bc

which gives me an result, now I like to pipe the result of this calculation into an Variable so that I could use it later in another command,

piping into files work, but not the piping into variables

echo "scale=4 ; 3*2.5" | bc > test.file

so in pseudo-code i'm looking to do something like this

set MYVAR=echo "scale=4 ; 3*2.5" | bc ; mycommand $MYVAR

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

原来分手还会想你 2024-11-08 17:01:08

您可以执行以下操作(在 csh 中):

set MYVAR=`echo "scale 4;3*2.5" |bc`

或在 bash 中:

MYVAR=$(echo "scale 4;3*2.5" |bc)

You can do (in csh):

set MYVAR=`echo "scale 4;3*2.5" |bc`

or in bash:

MYVAR=$(echo "scale 4;3*2.5" |bc)
油焖大侠 2024-11-08 17:01:08
MYVAR=`echo "scale=4 ; 3*2.5" | bc`

请注意,bash 不喜欢非整数值 - 您将无法在 bash 中使用 7.5 进行计算。

MYVAR=`echo "scale=4 ; 3*2.5" | bc`

Note that bash doesn't like non-integer values - you won't be able to do calculations with 7.5 in bash.

独自←快乐 2024-11-08 17:01:08
 MYVAR=$(echo "scale 4;3*2.5" | bc)
 MYVAR=$(echo "scale 4;3*2.5" | bc)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文