break command in Linux with examples
2023-07-24 02:26 作者:RisesunStudios | 我要投稿
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.
