标签:字符串 技术分享 type 数组 51cto col proc ges alt
shell中的函数示例1打印你的参数
示例2定义一个加法函数
示例3显示IP的函数
数组就是字符串,一串数字,它形成了一个变量,变量叫做数组
取数组的值。
定义数组
[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
标签:字符串 技术分享 type 数组 51cto col proc ges alt
原文地址:http://blog.51cto.com/8043410/2177438