break command in Linux with examples
break command is used to terminate the execution of for loop, while loop and until loop. It can also take one parameter i.e.[N]. Here n is the number of nested loops to break. The default number is 1.
Syntax:
break [n]
Example 1: Using break statement in for loop
Example 2: Using break statement in while loop
Example 3: Using break statement in until loop
break –help : It displays help information.
Please Login to comment...