首页 > 代码库 > bash arithmatic

bash arithmatic

Arithmetic in bash is done with $ and double parentheses:echo "$(($num1+$num2))"Or $ and square brackets:echo "$[$num1+$num2]"You can assign from that (sans echo). There is also expr:echo `expr "$num1" + "$num2"`

  http://unix.stackexchange.com/a/93030