Shell script Programming Shell array

Source: Internet
Author: User

1.bash supports one-dimensional arrays (multidimensional arrays are not supported) and does not qualify the size of the array

(1) define an array:

Array_name= (value0 value1 value2 value3)

Or

Array_name= (

Value0

Value1

value2

Value3

)

or individually defined:

Array_name[0]=value0

Array_name[1]=value1

Array_name[n]=valuen

(2) Read array: ${array name [subscript]}

Use the @ symbol to get all the elements in the array: Echo ${array_name[@]}

(3) Get the length of the array

#取得数组元素的个数

length=${#array_name [@]}

#或者

Length=${array_name[*]}

#取得数组单个元素的长度

length=${#array_name [n]}

Shell script Programming Shell array

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.