Shell脚本数组

Posted Sawyer Ford

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell脚本数组相关的知识,希望对你有一定的参考价值。

平时写脚本还没有用到过数组,暂时先记录下用法。

#!/bin/bash

array1=(1 2 3 4 5)

array1_length=${#array1[@]}
echo "array1 length: ${array1_length}"

for item in ${array1[@]}
do
    echo "current item of array1: ${item}"
done

array2[0]="test0"
array2[1]="test1"
array2[2]="test2"
array2[3]="test3"

echo "array2: ${array2[@]}"

# 关联数组
declare -A dictArray
dictArray=([key3]=value3 [key1]=value1 [key2]=value2)

dictArray_length=${#dictArray[@]}
echo "dictArray length: ${dictArray_length}"

for key in ${!dictArray[@]}
do
    echo "current key of dictArray: ${key}"
done

for value in ${dictArray[@]}
do
    echo "current value of dictArray: ${value}"
done

for key in ${!dictArray[@]}
do
    echo "key: ${key}, value: ${dictArray[${key}]}"
done

 

以上是关于Shell脚本数组的主要内容,如果未能解决你的问题,请参考以下文章

用于确保在任何给定时间仅运行一个 shell 脚本的 shell 片段 [重复]

常用python日期日志获取内容循环的代码片段

shell脚本引用expect

Shell脚本(函数,shell中的数组)

shell脚本中的函数,shell中的数组,shell项目-告警系统

shell中的函数数组告警系统脚本