这次的shell案例比较简单,但有其特点。 #!/bin/sh # scriptbc - Wrapper for 'bc' that returns the result of a calculati
这次的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。
--结束END--
本文标题: 数值运算shell脚本
本文链接: https://lsjlt.com/news/19060.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0