2018-12-17 09:39:33 +08:00
break - stop the current inner loop
2019-01-03 12:10:47 +08:00
===================================
2018-12-17 09:39:33 +08:00
2018-12-18 09:58:24 +08:00
Synopsis
--------
2018-12-17 05:08:41 +08:00
LOOP_CONSTRUCT; [COMMANDS...] break; [COMMANDS...] end
2018-12-18 09:58:24 +08:00
2018-12-17 05:08:41 +08:00
2018-12-19 10:44:30 +08:00
Description
2019-01-03 12:10:47 +08:00
-----------
2018-12-17 05:08:41 +08:00
2019-03-31 03:44:07 +08:00
`` break `` halts a currently running loop, such as a `switch <cmds/switch.html> `__ , `for <cmds/for.html> `__ or `while <cmds/while.html> `__ loop. It is usually added inside of a conditional block such as an `if <cmds/if.html`__ block.
2018-12-17 05:08:41 +08:00
2018-12-20 04:02:45 +08:00
There are no parameters for `` break `` .
2018-12-17 05:08:41 +08:00
2018-12-19 10:44:30 +08:00
Example
2019-01-03 12:10:47 +08:00
-------
2018-12-17 05:08:41 +08:00
The following code searches all .c files for "smurf", and halts at the first occurrence.
2018-12-19 11:14:04 +08:00
::
for i in *.c
if grep smurf $i
echo Smurfs are present in $i
break
end
2018-12-17 05:08:41 +08:00
end
2018-12-19 11:14:04 +08:00