sh Bash:array,echo:使用Array显示索引列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Bash:array,echo:使用Array显示索引列表相关的知识,希望对你有一定的参考价值。

#!/bin/bash

array_i=(1 2 3 4 5)
array_i[0]='index1'
array_i[1]='index2'
array_i[2]='index3'
array_i[3]='index4'
array_i[4]='index5'
echo 'number of items:' ${#array_i[*]}
echo ${array_i[*]}

以上是关于sh Bash:array,echo:使用Array显示索引列表的主要内容,如果未能解决你的问题,请参考以下文章

array_function

sh Bash:声明,echo:显示关联数组

sh Bash:echo:文字颜色,背景颜色

从 Bash 数组中删除一个元素

sh Bash:tput,setab,echo:设置终端背景颜色

sh Bash:tput,setab,echo:设置终端背景颜色