An array is a container that stores the values of a similar data type. The storage process deals with entering the values at any index of the array, and the index of the array accesses that value. Whenever you declare an array, you have two options. Either assign the values at the time of declaration or enter the values when they are needed dynamically. In this guide, we have experienced both approaches. To perform this function in bash, you need to create an environment of the Linux operating system where you can access the terminal and other applications of user privileges.

To perform operations on array in bash, you need to install bash on Linux operating system. By installing the packages, it is already installed in the system. The version of bash should be greater than 4 to continue this guide further. If it is less than 4, you need to install the latest bash version or at least 4. Execute the command on the Linux terminal to check the version.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/1-33.jpg" data-lazy- height="144" src="data:image/svg xml,” width=”715″>

From the result, you will see that the bash version is 5.0.17. It means we can perform operations on an array using bash.

Example 1

To declare an empty array, the simplest method is given here. It contains the keyword “declare” following a constant “-a” and the array name. The name of the array is assigned with empty parenthesis. Run this command on the terminal.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/2-33.jpg" data-lazy- height="41" src="data:image/svg xml,” width=”469″>

This is how an empty array is declared using a single command. Mostly the empty arrays are not considered valuable because they don’t bear any value, just occupy the space, especially when you define the size of an array during declaration or dynamically at the run time.

Example 2

After the declaration of an empty array, you can now assure that there is no item there. Declare the array using the method mentioned in the first example.

Now you can check the array by taking the print of the array. The print is done by taking the index number. There is no value. To print all the array values, we use the ‘@’ or ‘*’ sign instead of the index number.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/3-32.jpg" data-lazy- height="74" src="data:image/svg xml,” width=”527″>

“#” implies the number of values in the specific index. If you want to display the value directly, there is no need to use the hash sign with the array’s name.

Example 3

In this example, we have to use the if-else statement to apply the condition on the array. Array creation is done first. It is a different method of array creation.

Unlike the previous examples, we have not used the “declare” keyword to create and initialize the array. This method is quite easy as the name of an array is directly assigned to the empty parenthesis. This means no value is assigned. Now check the array through the if-else statement. Here only the “if” part is used; you can also use the “else” part of the statement.

$ if ! (( ${#array[@]} > 0)); then echo “array is empty”; fi

The whole statement is written in a single line. It represents that if the index is on the 0 indexes, an array is empty. So the respective message is displayed, which is that “array is empty”.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/4-29.jpg" data-lazy- height="101" src="data:image/svg xml,” width=”720″>

Example 4

Again there is a use of the if-else statement. But this time, we have utilized both parts in the statement. The ‘if’ part will work only if the array is empty, but if it is full or has some value, then the part will display it. An array named “errors”. We have temporarily filled this array to check the working. Now we will use the statement. Here ‘eq’ is utilized as an equal sign.

$ if [ ${#errors[@]} -eq 0 ];

This statement will determine if the array index is at 0, so it means the array is empty.

Echo “no errors detected”

Echo “Errors are founded: ${#errors[@]}

Else part shows the number of elements in the array showing that the array is not empty. So it is a single element as three words are treated as individual because of the double-quotes.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/5-27.jpg" data-lazy- height="168" src="data:image/svg xml,” width=”613″>

Example 5

In the previous example, we have used “printf” to print the elements of the array. The “echo” command is used instead of the print command. Consider an array that is declared through the “declare” keyword

In this example, we have assigned the space to the first index of the array.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/6-24.jpg" data-lazy- height="116" src="data:image/svg xml,” width=”478″>

To check the value at that index in the array, we will echo the value. This time we don’t want to get the number; we want to check the value only.

This time, the index number is used directly in the command instead of any variable. Run the respective command. From the output, you will see that a space is shown. The user may think that the array is empty. But it is not. So we will check the number of elements present inside the array at the ‘0’ index. This will be accomplished by using the ‘hash’ sign in the command

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/7-23.jpg" data-lazy- height="65" src="data:image/svg xml,” width=”412″>

So it is confirmed that the ‘1’ element is present in the array. Similarly, there is another similar example if the user is not sure that he has filled the array index or not. He may check it by using the command of echo

The result is blank space. Every blank time-space does not mean that it is a space character.

The answer is ‘0’, which implies an empty array. Now we perform the same procedure as discussed above. Assign the array with space and then check the number; it will show ‘1’.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/8-19.jpg" data-lazy- height="161" src="data:image/svg xml,” width=”488″>

So it is proved that every time the blank space in the result of a command does not means it is the ‘space’ character.

Example 6

If you already have a value in the array, either it is full or has elements on the specific index, and you want to remove all the elements to keep the array empty. Now fabricate the term ‘unset’. In bash, this will remove all the elements of the array and will declare the respective array empty.

After that, you can check the value through the command.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/9-17.jpg" data-lazy- height="59" src="data:image/svg xml,” width=”385″>

Example 7

In the last example, we will display the way of adding values to the array. Yet this is not the first time, but it is another way of doing so.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/10-16.jpg" data-lazy- height="78" src="data:image/svg xml,” width=”396″>

Conclusion

It is considered preferable to declare the array empty at the time of creation because it helps to reduce redundancy in the future. To keep the values coherent, you need to fill the array dynamically. This article is a complete guide to declare the array empty both at the initialization and hereafter, depending upon the usage.

About the author

<img alt="" data-del="avatar" data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/Author-Image-150×150.jpg612cfeb3b89ab.jpg" height="112" src="data:image/svg xml,” width=”112″>

Aqsa Yasin

I am a self-motivated information technology professional with a passion for writing. I am a technical writer and love to write for all Linux flavors and Windows.