Bash array, bash

Source: Internet
Author: User

Bash array, bash
Bash only supports one-dimensional arrays. And the array subscript starts from 0.
Assign values to Arrays:
Array = (1 4 7 2 5 8) # use space as the delimiter and () as the array
Str = "this is test string"
Str_arr = ($ str); # separated by spaces by default
Array traversal:
For val in str_arr [*]; do echo $ val; done
For file in 'LS'; do echo $ file; done
Number of array elements: $ {# array}

For example, each character in a string is split into an array.
Hjj @ ThinkPad :~ $ Str = "long string"
Hjj @ ThinkPad :~ $ For (I = 0; I <$ {# str}; I ++) do a [I] =$ {str: $ I: 1 }; echo $ {a [I]}; done;
L
O
N
G

S
T
R
I
N
G

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.