shell中的函数、shell中的数组、告警系统需求分析
2021-06-22 08:06
标签:字符串 技术分享 type 数组 51cto col proc ges alt 示例1打印你的参数 示例2定义一个加法函数 示例3显示IP的函数 数组就是字符串,一串数字,它形成了一个变量,变量叫做数组 定义数组 查看其中某一个元素的值 shell中的函数、shell中的数组、告警系统需求分析 标签:字符串 技术分享 type 数组 51cto col proc ges alt 原文地址:http://blog.51cto.com/8043410/2177438
shell中的数组
取数组的值。
[root@100xuni1 shell]# b=(1 2 3) ##定义数组
[root@100xuni1 shell]# echo ${b[@]} ##打印数组也可以把@符号改成*号
1 2 3
[root@100xuni1 shell]# echo ${b[1]}
2
[root@100xuni1 shell]# echo ${b[2]}
3
告警系统需求分析
上一篇:javascript
下一篇:Swift 中的值类型与引用类型
文章标题:shell中的函数、shell中的数组、告警系统需求分析
文章链接:http://soscw.com/index.php/essay/97297.html