如何在shell中找到数组的长度? [英] How to find the length of an array in shell?

查看:247
本文介绍了如何在shell中找到数组的长度?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在shell中找到数组的长度?

How do I find the length of an array in shell?

例如:

arr=(1 2 3 4 5)

我想得到它的长度,在这种情况下为5.

And I want to get its length, which is 5 in this case.

推荐答案

$ a=(1 2 3 4)
$ echo ${#a[@]}
4

这篇关于如何在shell中找到数组的长度?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆