Add two variables without using expr in shell script. #shell program to add two variables var1=10 var2=20 sum=$(($var1 + $var2)) echo $sum ...
確定! 回上一頁