Loops allow you to run one or more commands multiple times until a certain condition is met. However, sometimes you may need to alter the flow of the loop and terminate the loop or only the current iteration.
In Bash, break and continue statements allow you to control the loop execution.
Bash break Statement
The break statement terminates the current loop and passes program control to the command that follows the terminated loop. It is used to exit from a for, while, until, or select loop. s The syntax of the break statement takes the following form:
break [n] [n] is an optional argument and must be greater than or equal to 1. When [n] is provided, the n-th enclosing loop is exited. break 1 is equivalent to break.
To better understand how to use the break statement, let’s take a look at the following examples.
In the script below, the execution of the while loop will be interrupted once the current iterated item is equal to 2:
i=0
while [[ $i -lt 5 ]]
do
echo "Number: $i"
((i++))
if [[ $i -eq 2 ]]; then
break
fi
done
echo 'All Done!'
OutputNumber: 0Number: 1All Done!
Here is an example of using the break statement inside nested for loops.
When the argument [n] is not given, break terminates the innermost enclosing loop. The outer loops are not terminated:
for i in {1..3}; do
for j in {1..3}; do
if [[ $j -eq 2 ]]; then
break
fi
echo "j: $j"
done
echo "i: $i"
done
echo 'All Done!'
Outputj: 1i: 1j: 1i: 2j: 1i: 3All Done!
If you want to exit from the outer loop, use break 2. Argument 2 tells break to terminate the second enclosing loop:
for i in {1..3}; do
for j in {1..3}; do
if [[ $j -eq 2 ]]; then
break 2
fi
echo "j: $j"
done
echo "i: $i"
done
echo 'All Done!'
Outputj: 1All Done!
You may be interested in reading about uname commands.
Bash continue Statement
The continue statement skips the remaining commands inside the body of the enclosing loop for the current iteration and passes program control to the next iteration of the loop.
The syntax of the continue statement is as follows:
continue [n] The [n] argument is optional and can be greater than or equal to 1. When [n] is given, the n-th enclosing loop is resumed. continue 1 is equivalent to continue.
In the example below, once the current iterated item is equal to 2, the continue statement will cause execution to return to the beginning of the loop and to continue with the next iteration.
i=0
while [[ $i -lt 5 ]]; do
((i++))
if [[ "$i" == '2' ]]; then
continue
fi
echo "Number: $i"
done
echo 'All Done!'
OutputNumber: 1Number: 3Number: 4Number: 5All Done!
The following script prints numbers from 1 through 50 that are divisible by 9.
If a number is not divisible by 9, the continue statement skips the echo command and pass control to the next iteration of the loop.
for i in {1..50}; do
if [[ $(( $i % 9 )) -ne 0 ]]; then
continue
fi
echo "Divisible by 9: $i"
done
OutputDivisible by 9: 9Divisible by 9: 18Divisible by 9: 27Divisible by 9: 36Divisible by 9: 45
Conclusion
Loops are one of the fundamental concepts of programming languages. In scripting languages such as Bash, loops are useful for automating repetitive tasks.
The break statement is used to exit the current loop. The continue statement is used to exit the current iteration of a loop and begin the next iteration.
