Defining an array in Bash There are two ways to create new arrays in bash scripts. The first is to use the declare command to define an Array. This command will define an associative array named test_array.
Arrays can also be created by assigning elements.
Accessing array elements Similar to other programming languages, bash array elements can be accessed using index numbers starting from 0 and then 1, 2, 3, ... n. This also works for associative arrays where the index numbers are numeric.
Use @ or * instead of a specific index number to print all elements of an array.
Looping through an array You can also access array elements using loops in bash scripting. Loops are very useful to go through all the array elements one by one and perform some operation on them.
Adding new elements to an array You can use the (+=) operator to add any number of elements to an existing array. Just add new elements, like:
View the array elements after adding new:
Update array elements To update array elements, just assign any new value to the existing array by index. Let's change the current array element at index 2 with grapes.
View array elements after adding a new element:
Deleting an array element Any array element can be simply deleted using its index number. Following is to remove the element at index 2 from an array in bash script.
View array elements after adding a new element:
You may also be interested in:
|
<<: MySQL database development specifications [recommended]
>>: Understanding and using React useEffect
I don't know if it's because the binary d...
Preface Many years ago, I was a newbie on the ser...
1. Overview of SQLException When an error occurs ...
1. The table tag is table, tr is row, td is cell, ...
This article introduces the method of implementin...
Table of contents Using routing plugins in a modu...
Checkboxes are very common on web pages. Whether ...
I. Introduction First, let me explain the version...
1. Custom text selection ::selection { background...
<br />Related articles: 9 practical tips for...
Introduction: All browsers come with default styl...
First, let me show you the finished effect Main i...
Preface Crond is a scheduled execution tool under...
What is JSX JSX is a syntax extension of Javascri...
1) Scope of application: readonly:input[type="...