shell array
2019-03-04 本文已影响174人
运维开发_西瓜甜
Shell数组变量 【拓展 1星】
普通数组:只能使用整数作为数组索引
关联数组:可以使用字符串作为数组索引
一、普通数组
定义数组:
方法一: 一次赋一个值
数组名[下标]=变量值
array1[0]=pear
array1[1]=apple
array1[2]=orange
array1[3]=peach
方法二: 一次赋多个值
array2=(tom jack alice)
array3=(cat /etc/passwd
) 希望是将该文件中的每一个行作为一个元数赋值给数组array3
array4=(ls /var/ftp/Shell/for*
)
array5=(tom jack alice "bash shell")
colors=(blue recolor)
array5=(1 2 3 4 5 6 7 "linux shell" [20]=ansible)
查看数组:
declare -a
declare -a array1='([0]="pear" [1]="apple" [2]="orange" [3]="peach")'
declare -a array2='([0]="tom" [1]="jack" [2]="alice")'
访问数组元数:
echo ${array1[0]} 访问数组中的第一个元数
echo {array1[*]}
echo ${#array1[@]} 统计数组元数的个数
echo ${!array2[@]} 获取数组元数的索引
echo ${array1[@]:1} 从数组下标1开始
echo ${array1[@]:1:2} 从数组下标1开始,访问两个元素
遍历数组:
方法一: 通过数组元数的个数进行遍历
方法二: 通过数组元数的索引进行遍历
二、关联数组
定义关联数组:
申明关联数组变量
declare -A ass_array1
declare -A ass_array2
方法一: 一次赋一个值
数组名[索引]=变量值
ass_array1[index1]=pear
ass_array1[index2]=apple
ass_array1[index3]=orange
ass_array1[index4]=peach
方法二: 一次赋多个值
ass_array2=([index1]=tom [index2]=jack [index3]=alice [index4]='bash shell')
查看数组:
declare -A
declare -A ass_array1='([index4]="peach" [index1]="pear" [index2]="apple" [index3]="orange" )'
declare -A ass_array2='([index4]="bash shell" [index1]="tom" [index2]="jack" [index3]="alice" )'
访问数组元数:
echo ${ass_array2[index2]} 访问数组中的第二个元数
echo {array1[*]}
echo ${#ass_array2[@]} 获得数组元数的个数
echo ${!ass_array2[@]} 获得数组元数的索引
遍历数组:
方法一: 通过数组元数的索引进行遍历
作业:
- 将/etc/shadow文件的每一行作为元数赋值给数组
- 统计/etc/passwd文件中不同类型shell的数量
- 从标准输入读入数据保存到数组
- 遍历数组有哪些方法?
- 关联数组和普通数组的区别?