bc
*、
echo "$2 * $2" | bc > file
let
如果只是 let a=1 和 a=1,它们没有区别,但是 let 还可以用于带赋值的运算,例如let a=1+5echo $a得到计算结果 6,而a=1+5echo $a得到一个字符串 1+5,