shell循环字符串数组

Posted 也许还年轻

tags:

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

#!/bin/bash
arr=("0" "1" "2" "3" "4" "5" "6" "7" "8" "9" "a" "b" "c" "e" "e" "f")

for value in ${arr[@]}
do
echo $value
done


# 或者采取如下方式
echo "----------------------another way----------------------"

for (( i = 0 ; i < ${#arr[@]} ; i++ ))
do
echo ${arr[$i]}
done

 

以上是关于shell循环字符串数组的主要内容,如果未能解决你的问题,请参考以下文章

shell循环字符串数组

shell基础(五)for循环及循环终止命令

linux shell脚本:拆分字符串,将它们放在一个数组中然后循环它们[重复]

shell if 语句

理论+实操:shell之case语句for/while/until循环语句函数数组-满满的干货

shell脚本中数组的基本用法