Linux shell 变量中何时需要使用花括号

 

001、简单测试

[root@PC1 test2]# ls
[root@PC1 test2]# a="abc"              ## 生成一个测试变量
[root@PC1 test2]# echo $a              ## 输出变量方式1
abc
[root@PC1 test2]# echo ${a}            ## 输出变量方式2
abc
[root@PC1 test2]# echo $axxx           ## 不加花括号变量扩展

[root@PC1 test2]# echo ${a}xxx         ## 添加花括号变量扩展;;  以上结果说明 带花括号的变量扩展通用性更好
abcxxx

。 

 

002、简单测试

[root@PC1 test2]# a="abc"              ## 测试变量1
[root@PC1 test2]# b="xyz"              ## 测试变量2
[root@PC1 test2]# echo $a$b
abcxyz
[root@PC1 test2]# echo $a_$b           ## 变量扩展1
xyz
[root@PC1 test2]# echo ${a}_${b}       ## 变量扩展2;   以上结果说明带花括号的变量扩展试用性更好
abc_xyz

 。

 

reference:

01、https://mp.weixin.qq.com/s?__biz=Mzg4ODA5NDEwNw==&mid=2247484641&idx=1&sn=0324dd66bc4c763b3333aa87af09fd2a&chksm=ce2ae4b4b9367f428ac4d90e03b8996946e0bb445a55252487c495db0eda60baad286e5f13ec&scene=132&exptype=timeline_recommend_article_extendread_samebiz&show_related_article=1&subscene=23&scene=132#wechat_redirect

 

posted @ 2024-05-26 23:38  小鲨鱼2018  阅读(33)  评论(0编辑  收藏  举报