shell脚本之for循环遍历数组

#!/bin/bash
arr=(1 2 3 4 5 6 7 8 9 10)
for a in ${arr[*]}
do
echo $a
done

输出结果:
1
2
3
4
5
6
7
8
9
10

你可能感兴趣的:(后端)