将 seq 生成的数字序列循环放到数组里面
#!/bin/bash # 将 seq 生成的数字序列循环放到数组里面 for i in $(seq 1 10); do array[a]=$i let a++ done echo ${array[*]}