shell 基础4
Posted javasl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 基础4相关的知识,希望对你有一定的参考价值。
数值运算:
declare:声明变量类型
declare [+/-][选项] 变量名
选项:
-:给变量设定类型属性
+:取消变量的类型属性
-i:将变量声明为整数型(integer)
-x:将变量声明为环境变量
-p:显示指定变量的被声明的类型
[[email protected] tmp]# aa=11
[[email protected] tmp]# bb=22
[[email protected] tmp]# cc=$aa+$bb
[[email protected] tmp]# echo $cc
11+22
方法一:
[[email protected] tmp]# declare -i cc=$aa+$bb
[[email protected] tmp]# echo $cc
33
方法二:
[[email protected] tmp]# aa=11
[[email protected] tmp]# bb=22
[[email protected] tmp]# dd=$(expr $aa + $bb)
[[email protected] tmp]# echo $dd
33
说明:+号两侧的空格不能省略
方法三:
[[email protected] tmp]# aa=11
[[email protected] tmp]# bb=22
[[email protected] tmp]# ee=$(($aa + $bb))
[[email protected] tmp]# echo $ee
33
[[email protected] tmp]#
[[email protected] tmp]# declare -p cc
declare -i cc="33"
[[email protected] tmp]# declare -p aa
declare -- aa="11"
[[email protected] tmp]# declare -p bb
declare -- bb="22"
以上是关于shell 基础4的主要内容,如果未能解决你的问题,请参考以下文章