在Bash中定义和索引数组

Posted 普通学习者

tags:

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

source: http://www.linuxjournal.com/content/bash-arrays

#(1) define an array with two items
myArr=(hello world)
#(2) index items of array with square brackets; start with 0
echo ${myArr[0]}
echo ${myArr[1]}
#(3) index all items
echo ${myArr[*]}
echo ${myArr[@]}
#(4) assign items including blank space with quotation marks
myArr=("hello world" 2018)

以上是关于在Bash中定义和索引数组的主要内容,如果未能解决你的问题,请参考以下文章

bash脚本之数组学习

bash之数组增删改查

bash数组

liunx的数组及字符串处理

shell脚本编程数组

有规划的bash变量组