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