Shell arrays and dictionaries

Source: Internet
Author: User

Shell arrays and dictionaries
#!/bin/bashecho "Shell definition dictionary" #必须先声明declare-A dicdic= ([key1]= "value1" [key2]= "value2" [key3]= "Value3") # Print the specified key Valueecho ${dic["Key1"} #打印所有key值echo ${!dic[*]} #打印所有valueecho ${dic[*]} #遍历key值for key in $ (echo ${!dic[*]}) Do echo "$key: ${dic[$key]}" Doneecho "Shell definition array" #数组list = ("value1" "value2" "Value3") #打印指定下标echo ${list[1]} #打印所有下标e Cho ${!list[*]} #打印数组下标echo ${list[*]} #数组增加一个元素list = ("${list[@"} "Value3")

Echo ${list[*]}



${#fileinfo [@]} is the number of FileInfo this array


Shell arrays and dictionaries

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.