Sorting Arrays in Bash
Sorting an array is a very common task in any programming language. In Bash scripting, we can also accomplish this task in two different ways.
The first one uses any sorting algorithm and the second one uses a built-in keyword in Bash script called readarray. This article will show how we can sort an array in Bash script.
Furthermore, we will see some examples with explanations to make the topic easier to understand.
Sort an array using bubble sort in Bash
In Bash scripting, you can sort an array using any sorting algorithm like bubble sort, merge sort, etc. In our example below, we have implemented bubble sort to sort the array.
The code for our example is shown below.
MyArray=(9 8 20 10 15)
echo "The original array is:"
echo ${MyArray[*]}
# We implemented the bubble sort here.
for ((i = 0; i<5; i++))
do
for((j = 0; j<5-i-1; j++))
do
if [ ${MyArray[j]} -gt ${MyArray[$((j+1))]} ]
then
# swap
temp=${MyArray[j]}
MyArray[$j]=${MyArray[$((j+1))]}
MyArray[$((j+1))]=$temp
fi
done
done
echo "The sorted array is:"
echo ${MyArray[*]}
Let's explain the above example line by line.
- First, we declared an array called MyArray.
-
After that, we
echo ${MyArray[*]}
display the array via rows. - After that, we created two loops and implemented bubble sort. In these loops, we created a condition to check whether the current element is greater than the next element.
- If the condition is true, then we perform a swap operation between those two elements of the array.
- Finally, we just display the array after the sorting is done. When you run the above program, you will get the output as shown below.
The original array is:
9 8 20 10 15
The sorted array is:
8 9 10 15 20
Sorting an array using readarray keyword in Bash
Suppose you have an array that contains a mixture of alphabetical and numeric characters. To sort this array, you need to find different ways to do it.
To sort the array, you need to compare the ASCII values of the characters.
There is a built-in keyword in Bash scripting that allows you to do this in just one line of code. The keyword is readarray.
In the following example, we have created an array of combined alphabetical and numeric characters. After we sort the array using the readarray keyword, we display the sorted array.
The code for our example is shown below.
MyArray=(n a c b 6 7 5)
readarray -t MyArray < <(printf '%s\n' "${MyArray[@]}" | sort)
echo "The sorted list is: ${MyArray[*]}"
After executing the script, you will get the output as shown below.
The sorted list is: 5 6 7 a b c n
请注意
, all the codes used in this article are written in Bash. It will only work in Linux Shell environment.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Creating a Progress Bar in Bash
Publish Date:2025/03/23 Views:94 Category:OPERATING SYSTEM
-
A progress bar is a visual indicator that shows the progress of a task, such as a long-running script or command. It can be used to provide feedback to the user about the status of a task and can also help estimate the time remaining before
Multidimensional arrays in Bash
Publish Date:2025/03/23 Views:68 Category:OPERATING SYSTEM
-
Multidimensional array is a very important element for any program. It is mainly used to create table view of data and many other purposes. This article demonstrates how to create a two-dimensional array. In addition, we will discuss the to
Append new data to an array without specifying the index in Bash
Publish Date:2025/03/23 Views:138 Category:OPERATING SYSTEM
-
Arrays are a common part of any programming language. In Bash scripts, you can also use arrays; you can declare, modify, and manipulate arrays. But in this article, we will see step by step how to declare an array and add new data to it. We
String comparison in batch files
Publish Date:2025/03/22 Views:168 Category:OPERATING SYSTEM
-
A string is an ordered collection of characters. You can compare strings using conditional commands in batch files, namely, if, if-else, and for commands. Strings may contain spaces and special characters, which can cause errors in the batc
Remove double quotes from variable in batch file
Publish Date:2025/03/22 Views:177 Category:OPERATING SYSTEM
-
In batch files, variables containing multiple words or spaces must be placed in double quotes, but sometimes, we do not want to see these quotes in the output. These quotes can be removed from the variables in batch files. There are many wa
Reading file into variable in batch script
Publish Date:2025/03/22 Views:121 Category:OPERATING SYSTEM
-
Sometimes, we need to put the entire contents of a file into a variable for various purposes, such as finding specific data from a file, replacing a specific part of a file, etc. In Batch, it is very easy to put the entire file contents in
Print a file after skipping first X lines in Bash
Publish Date:2025/03/22 Views:187 Category:OPERATING SYSTEM
-
Suppose you have a file, a large file, and you want to display its contents. How would you do it? You obviously don't want to print out the entire contents of the file, as that's not very practical. You might want to print some selective li
Get the Primary IP Address in Linux
Publish Date:2025/03/22 Views:70 Category:OPERATING SYSTEM
-
There are various ways to get network details in Linux. We will learn some of them in this article. This simple guide is all about using different commands that can be used to get the primary IP address in Linux operating system using Bash
Bash History Size
Publish Date:2025/03/22 Views:189 Category:OPERATING SYSTEM
-
In this article, we will learn about Bash history, its size, and how we can change our history size and handle limits. Before getting into our topic, let us first understand why we need history in Bash shell and how we can get it. Most deve