哪一个 bash 内置命令能够进行数学运算?

bash shell 的内置命令 let 可以进行整型数的数学运算。

#! /bin/bash


let c=a+b

原文地址:https://www.cnblogs.com/programb/p/14105285.html