9-13 all the knowledge points involved in Shell programming

Source: Internet
Author: User

Bash Script Programming:
Variable: variable name
Array: Contiguous number of independent memory spaces, each memory space equivalent to a variable;
Element: array name [index]

Bash 4.0+
Traditional arrays: Indexed as numbers, numbering starting from 0;
Declare-a Array_Name
Associative arrays: Indexes can be customized and can be indexed using arbitrary strings;
Declare-a Array_Name

Support for sparse formats

How array elements are assigned:
(1) Assign only one element at a time
Array[index]=value
(2) Assigning all elements at once
array= ("Val1" "Val2" ...)
(3) Assigning a value to the specified index
array= ([0]= "Val1" [3]= "Val2")
(4) Read-a array

Reference element: ${array[index]}

Length: ${#array [*]}, ${#array [@]}

Exercise: Use bash to generate 10 random values to be stored in an array;
$RANDOM

9-13 all the knowledge points involved in Shell programming

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.