Bash Scripting - For Loop
Last Updated :
15 Sep, 2023
Since BASH is a command-line language, we get some pretty feature-rich experience to leverage the programming skills to perform tasks in the terminal. We can use loops and conditional statements in BASH scripts to perform some repetitive and tricky problems in a simple programmatic way. In this article, we are going to focus on the for loop in BASH scripts.
Depending on the use case and the problem it is trying to automate, there are a couple of ways to use loops.
- Simple For loop
- Range-based for loop
- Array iteration for loops
- C-Styled for loops
- Infinite for loop
Simple For loop
To execute a for loop we can write the following syntax:
#!/bin/bash
for n in a b c;
do
echo $n
done
- In the first iteration,
n
takes the value "a", and the script prints "a". - In the second iteration,
n
takes the value "b", and the script prints "b". - In the third iteration,
n
takes the value "c", and the script prints "c".

The above command will iterate over the specified elements after the in keyword one by one. The elements can be numbers, strings, or other forms of data.
Range-based for loop
We can use range-based for loops. In this type of loop, we can specify the number to start, to stop, and to increment at every iteration(optional) in the statement. There are two ways you can do this i.e. by mentioning the increment/decrementer value and by incrementing by one by default. The syntax looks like this:
#!/bin/bash
for n in {1..5};
do
echo $n
done

In the above code, we use the "{}" to specify a range of numbers. Inside the curly braces, we specify the start point followed by two dots and an endpoint. By default, it increments by one. Hence we print 5 numbers from 1 to 5 both inclusive.
#!/bin/bash
for n in {1..5..2};
do
echo $n
done

Here we can see that the loop incremented by 2 units as mentioned in the curly braces. Thus, this makes working with numbers very easy and convenient. This can also be used with alphabetical characters.
NOTE: We cannot use variables inside the curly braces, so we will have to hardcode the values. To use the variables, we see the traditional C-styled for loops in the next few sections.
Array iteration for loops
We can iterate over arrays conveniently in bash using for loops with a specific syntax. We can use the special variables in BASH i.e @ to access all the elements in the array. Let's look at the code:
#!/bin/bash
s=("football" "cricket" "hockey")
for n in ${s[@]};
do
echo $n
done

We can iterate over the array elements using the @ operator that gets all the elements in the array. Thus using the for loop we iterate over them one by one. We use the variable ${variable_name[@]} in which, the curly braces here expand the value of the variable "s" here which is an array of strings. Using the [@] operator we access all the elements and thus iterate over them in the for a loop. Here, the "n" is the iterator hence, we can print the value or do the required processing on it.
C-Styled for loops
As said earlier, we need to use the variables inside the for loops to iterate over a range of elements. And thus, the C-styled for loops play a very important role. Let's see how we use them.
#!/bin/bash
n=7
for (( i=1 ; i<=$n ; i++ ));
do
echo $i
done

As we can see we can dynamically use the value of the range of end conditions. Remember the spaces between the double braces might be intentional and are part of the syntax. C-styled for loops are the loops that have 3 parts, the initializing iterator, the incrementor/decrementer, and the end condition.
In the syntax above, we have initialized the loop iterator/counter to 1 that can be anything as per choice. The second part is the end condition, here we have used the variable "n" which is initialized before the for loop and thus we use the simple $ operator to get the value of the variable. Finally, we have the incrementor/decrementer which changes the iterator/counter to a value that can be anything but, in the example, we have used the unary operator (++) to increment the value by one which is equivalent to "i=i+1". Thus we can use statements like i+=2, i--,++i, and so on and so forth.
Infinite for loop
We don't use this often but it is sometimes useful to get certain things working. The syntax is quite easy and similar to the C-styled for loops.
#!/bin/bash
n=4
for (( ; ; ));
do
if [ $n -eq 9 ];then
break
fi
echo $n
((n=n+1))
done
The loop starts with n
set to 4. It increments n
by 1 at each iteration and prints the value of n
until n
becomes equal to 9. When n
reaches 9, the break
statement is executed, and the loop terminates. The script stops after printing the numbers 4 to 8.

As we can see the `for` loop has no conditions and this loops forever but we have a condition statement to check that it doesn't go on forever. We use the break statement inside the if statement so as to get out of the loop and stop iterating with the iterator. We have used the incrementor to increment the variable in the loop otherwise the loop is infinite. Of course, we need some logic to break out of the loop and that is why we need to use the if conditional statement.
Similar Reads
Non-linear Components In electrical circuits, Non-linear Components are electronic devices that need an external power source to operate actively. Non-Linear Components are those that are changed with respect to the voltage and current. Elements that do not follow ohm's law are called Non-linear Components. Non-linear Co
11 min read
Spring Boot Tutorial Spring Boot is a Java framework that makes it easier to create and run Java applications. It simplifies the configuration and setup process, allowing developers to focus more on writing code for their applications. This Spring Boot Tutorial is a comprehensive guide that covers both basic and advance
10 min read
Class Diagram | Unified Modeling Language (UML) A UML class diagram is a visual tool that represents the structure of a system by showing its classes, attributes, methods, and the relationships between them. It helps everyone involved in a projectâlike developers and designersâunderstand how the system is organized and how its components interact
12 min read
Steady State Response In this article, we are going to discuss the steady-state response. We will see what is steady state response in Time domain analysis. We will then discuss some of the standard test signals used in finding the response of a response. We also discuss the first-order response for different signals. We
9 min read
Backpropagation in Neural Network Back Propagation is also known as "Backward Propagation of Errors" is a method used to train neural network . Its goal is to reduce the difference between the modelâs predicted output and the actual output by adjusting the weights and biases in the network.It works iteratively to adjust weights and
9 min read
Polymorphism in Java Polymorphism in Java is one of the core concepts in object-oriented programming (OOP) that allows objects to behave differently based on their specific class type. The word polymorphism means having many forms, and it comes from the Greek words poly (many) and morph (forms), this means one entity ca
7 min read
3-Phase Inverter An inverter is a fundamental electrical device designed primarily for the conversion of direct current into alternating current . This versatile device , also known as a variable frequency drive , plays a vital role in a wide range of applications , including variable frequency drives and high power
13 min read
What is Vacuum Circuit Breaker? A vacuum circuit breaker is a type of breaker that utilizes a vacuum as the medium to extinguish electrical arcs. Within this circuit breaker, there is a vacuum interrupter that houses the stationary and mobile contacts in a permanently sealed enclosure. When the contacts are separated in a high vac
13 min read
Linux Commands Cheat Sheet Linux, often associated with being a complex operating system primarily used by developers, may not necessarily fit that description entirely. While it can initially appear challenging for beginners, once you immerse yourself in the Linux world, you may find it difficult to return to your previous W
13 min read
AVL Tree Data Structure An AVL tree defined as a self-balancing Binary Search Tree (BST) where the difference between heights of left and right subtrees for any node cannot be more than one. Example of an AVL Tree:The balance factors for different nodes are : 12 :1, 8:1, 18:1, 5:1, 11:0, 17:0 and 4:0. Since all differences
4 min read