2019-03-31 17:05:09 +08:00
.. _cmd-continue:
2018-12-17 09:39:33 +08:00
continue - skip the remainder of the current iteration of 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
2019-09-17 17:59:04 +08:00
::
2018-12-18 09:58:24 +08:00
2019-09-17 17:59:04 +08:00
LOOP_CONSTRUCT; [COMMANDS...;] continue; [COMMANDS...;] end
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 17:24:04 +08:00
`` continue `` skips the remainder of the current iteration of the current inner loop, such as a :ref: `for <cmd-for>` loop or a :ref: `while <cmd-while>` loop. It is usually added inside of a conditional block such as an :ref: `if <cmd-if>` statement or a :ref: `switch <cmd-switch>` statement.
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 removes all tmp files that do not contain the word smurf.
2018-12-19 11:14:04 +08:00
::
for i in *.tmp
if grep smurf $i
continue
end
# This "rm" is skipped over if "continue" is executed.
rm $i
# As is this "echo"
echo $i
2018-12-17 05:08:41 +08:00
end
2018-12-19 11:14:04 +08:00
2020-03-07 22:57:22 +08:00
See Also
--------
- the :ref: `break <cmd-break>` command, to stop the current inner loop