Linux Shell 设置变量属性
declare 和 typeset 都是 Shell 内建命令,它们的用法相同,都用来设置变量的属性。不过 typeset 已经被弃用了,建议使用 declare 代替。
declare 命令的用法如下所示:
declare [+/-] [aAfFgilprtux] [变量名=变量值]
其中: -表示设置属性,+表示取消属性,aAfFgilprtux都是具体的选项,它们的含义如下表所示:
【例1】将变量声明为整数并进行计算
#!/bin/bash declare -i m n ret #将多个变量声明为整数 m=20 n=10 ret=$m+$n echo $ret
运行结果:
30
【例2】将变量定义为只读变量
[c.biancheng.net]$ declare -r n=10 [c.biancheng.net]$ n=20 bash: n: 只读变量 [c.biancheng.net]$ echo $n 10
【例3】显示变量的属性和值
[c.biancheng.net]$ declare -r n=10 [c.biancheng.net]$ declare -p n declare -r n="10"
相关推荐
tianhuak 2020-11-24
以梦为马不负韶华 2020-10-20
彼岸随笔 2020-10-20
yutou0 2020-10-17
applecarelte 2020-10-16
ourtimes 2020-10-16
firefaith 2020-10-30
libao 2020-09-16
Yyqingmofeige 2020-08-18
xiaoyuerp 2020-08-17
以梦为马不负韶华 2020-08-16
huha 2020-10-16
lianshaohua 2020-09-23
laisean 2020-11-11
zhangjie 2020-11-11
大牛牛 2020-10-30
liguojia 2020-10-20
wangzhaotongalex 2020-10-20
CARBON 2020-10-20