如何将 bc 计算通过管道传输到 shell 变量中
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以执行以下操作(在 csh 中):
或在 bash 中:
You can do (in csh):
or in bash:
请注意,bash 不喜欢非整数值 - 您将无法在 bash 中使用 7.5 进行计算。
Note that bash doesn't like non-integer values - you won't be able to do calculations with 7.5 in bash.