shell脚本之使用bc工具实现数值转换(浮点转二进制)
Posted 旅行者3468号
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本之使用bc工具实现数值转换(浮点转二进制)相关的知识,希望对你有一定的参考价值。
#! /bin/bash echo -n input float: read num echo power of the operation: echo $num^2 |bc echo converted to binary echo "obase=2;$num" |bc
[[email protected] Desktop]# ./zhuanhuan.sh input float:3.1415926 power of the operation: 9.8696040 converted to binary 11.001001000011111101101001
以上是关于shell脚本之使用bc工具实现数值转换(浮点转二进制)的主要内容,如果未能解决你的问题,请参考以下文章