bash shell 数组元素遍历操作 foreach

 
#数组元素遍历 foreach 操作
#参数:1数组; 2 回调函数(用户定义); 3用户数据参数(可选)
#回调函数: 对数组每个元素调用该函数
# 回调函数参数: 参数:1元素在数组中的下标(从 0 开始);2 元素; 3用户数据参数(可选)
# 例子:
#    对数组 xrsh_array 中每个元素调用函数 xrsh_fn
#    xrsh_fn()
#    {
#      echo index $1, item $2, usr arg $3
#    }
#    xrsh_array=(i1,i2,i3)
#    xrsh_tmp=`echo ${xrsh_array[*]}`
#     xrsh_foreach "$xrsh_tmp" xrsh_fn
# 注意:数组作为参数使用时需要先转换
function xrsh_foreach()
{
  local _xrsh_tmp
  local _xrsh_cnt=0
  local _xrsh_array=`echo"$1"`
  for _xrsh_tmp in ${_xrsh_array[*]}; do
    $2 $_xrsh_cnt $_xrsh_tmp $3
    _xrsh_cnt=$(( $_xrsh_cnt + 1 ))
  done
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值