欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

数值运算shell脚本

程序员文章站 2022-04-25 15:14:28
这次的shell案例比较简单,但有其特点。 #!/bin/sh # scriptbc - wrapper for 'bc' that returns the...

这次的shell案例比较简单,但有其特点。

#!/bin/sh

# scriptbc - wrapper for 'bc' that returns the result of a calculation.

if [ $1 = "-p" ] ; then
 precision=$2
 shift 2
else
 precision=2      # default
fi

bc -q << eof
scale=$precision
$*
quit
eof

exit 0

脚本特点:
1) 脚本整体简洁明了,但功能强大,可以实现带自定义数值运算。
2)scale=$precision 是传给bc的参数,用于显示小数的位数
3)<< eof
scale=$precision $* quit
eof
用来给脚本传递值,类似于在bash下手动依次输入的效果。
4) precision=$2 ;shift 2 这行有意思,有了这个就可以实现脚本参数的功能,
shift 2 的意思是将输入的参数左移2位,即$1,$2先清空,$3赋值给$1,$4赋值给$2。