码迷,mamicode.com
首页 > 编程语言 > 详细

循环打印数组,并统计个数shell脚本

时间:2016-05-10 18:14:52      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

                    使用Shell循环打印数组                    


[root@slavedb array]# cat a.sh
#!/bin/bash
array=(
freddy
freddie
tang
sheng
wei
)
for ((i=0;i<${#array[@]};i++));do
        echo "This is num $i,then content is ${array[$i]}"   #$i是下标
done
echo "-----------------"
echo "array len:${#array[@]}"

 

循环打印数组,并统计个数shell脚本

标签:

原文地址:http://www.cnblogs.com/tangshengwei/p/5478485.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!