1.数组定义
[root@master ~]# a=(1 2 3 4 5)
一对括号表示是数组,数组元素用“空格”符号分割开。
2.数组读取与赋值
得到长度:
[root@master~]# echo ${#a[@]}
5
用${#数组名[@或*]} 可以得到数组长度
读取:
[root@master~]#echo ${a[2]}
3
[root@master~]#echo ${a[*]}
1 2 3 4 5
用${数组名[下标]} 下标是从
[root@master~]#a[1]=100
[root@master~]#echo ${a[*]}
1 100 3 4 5
[root@master~]#a[5]=100
[root@master~]# echo ${a[*]}
1 2 3 4 5 100
直接通过 数组名[下标] 就可以对其进行引用赋值,如果下标不存在,自动添加新一个数组元素
删除:
[root@master~]#a=(1 2 3 4 5)
[root@master~]#unset a
[root@master~]# echo ${a[*]}
[root@master~]#a=(1 2 3 4 5)
[root@master~]#unset a[1]
[root@master~]#echo ${a[*]}
1 3 4 5
[root@master~]#echo ${#a[*]}
4
特殊使用
分片:
[root@master~]#a=(1 2 3 4 5)
[root@master~]#echo ${a[@]:0:3}
1 2 3
[root@master~]#echo ${a[@]:1:4}
2 3 4 5
[root@master~]# echo ${#c[@]}
4
[root@master~]# echo ${c[*]}
2 3 4 5
直接通过 ${数组名[@或*]:起始位置:长度} 切片原始数组,返回是字符串,中间用“空格”分开,因此如果加上”()”,将得到切片数组,上面例子:c 就是一个新数组。
替换:
[root@master~]#a=(1 2 3 4 5)
[root@master~]# echo ${a[@]/3/100}
1 2 100 4 5
[root@master~]# echo ${a[@]}
1 2 3 4 5
[root@master~]# a=(${a[@]/3/100})
[root@master~]#echo ${a[@]}
1 2 100 4 5