摘要: 变量的数值计算 1.$((表达式)) (1).实验1 [root@~_~ day4]# cat test.sh #!/bin/bash a=6 b=2 echo "a-b=$(($a-$b))" echo "a+b=$(($a+$b))" echo "a*b=$(($a*$b))" echo "a/ 阅读全文
posted @ 2017-04-09 03:58 ajilisiwei 阅读(246) 评论(0) 推荐(0) 编辑