let

let#

Bash arithmetic (built-in).

$ let a=5+3
$ let "b=a*2"
$ echo $b
$ echo $((5+3))