case where the shell handles the file name itself with an asterisk

Source: Internet
Author: User

You must enclose all the file names you get into the array, or the for loop will be parsed as a wildcard, or you can use a shell dictionary, as well as quotation marks.

Shell Dictionary Example

#!/bin/BashEcho "Shell Definition Dictionary"#必须先声明declare-A dicdic= ([key1]="value1"[key2]="value2"[key3]="Value3") #打印指定key的valueEcho${dic["Key1"]} #打印所有key值Echo${!dic[*]} #打印所有valueEcho${dic[*]} #遍历key值 forKeyinch$(Echo${!dic[*]}) Do        Echo "$key: ${dic[$key]}" DoneEcho "Shell definition Array"#数组list=("value1" "value2" "Value3") #打印指定下标Echo${list[1]} #打印所有下标Echo${!list[*]} #打印数组下标Echo${list[*]} #数组增加一个元素list=("${list[@]}" "Value3")

case where the shell handles the file name itself with an asterisk

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.