linux运算符

Posted Acumen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux运算符相关的知识,希望对你有一定的参考价值。

declare声明变量类型

declare [+/-] [option] variable name

options:

  -  给变量设定类型属性

  +  取消变量的类型属性

  -a  将变量声明为数组型

  -i  将变量声明为整数型 ( integer )

  -x  将变量声明为环境变量

  -r  将变量声明为只读变量

  -p  显示指定变量的被声明的类型

1 [email protected]606:~$ a=11
2 [email protected]606:~$ b=22
3 [email protected]606:~$ declare -i c=$a+$b
4 [email protected]606:~$ echo $c
5 33
6 [email protected]606:~$ declare -p c
7 declare -i c="33"
8 [email protected]606:~$ 

 

以上是关于linux运算符的主要内容,如果未能解决你的问题,请参考以下文章

20个简洁的 JS 代码片段

20个简洁的 JS 代码片段

[linux][c/c++]代码片段01

[linux][c/c++]代码片段02

linux打开终端如何启动scala,如何在终端下运行Scala代码片段?

Android 逆向Linux 文件权限 ( Linux 权限简介 | 系统权限 | 用户权限 | 匿名用户权限 | 读 | 写 | 执行 | 更改组 | 更改用户 | 粘滞 )(代码片段