2019-03-31 09:05:09 +00:00
|
|
|
.. _cmd-end:
|
|
|
|
|
2020-03-31 15:37:38 +00:00
|
|
|
end - end a block of commands
|
|
|
|
=============================
|
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
|
|
|
::
|
2018-12-18 01:58:24 +00:00
|
|
|
|
2019-09-17 09:59:04 +00:00
|
|
|
begin; [COMMANDS...] end
|
2020-03-04 21:06:57 +00:00
|
|
|
function NAME [OPTIONS]; COMMANDS...; end
|
2019-09-17 09:59:04 +00:00
|
|
|
if CONDITION; COMMANDS_TRUE...; [else; COMMANDS_FALSE...;] end
|
2020-03-04 21:06:57 +00:00
|
|
|
switch VALUE; [case [WILDCARD...]; [COMMANDS...]; ...] end
|
2019-09-17 09:59:04 +00:00
|
|
|
while CONDITION; COMMANDS...; end
|
|
|
|
for VARNAME in [VALUES...]; COMMANDS...; end
|
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
|
|
|
|
2020-03-04 21:06:57 +00:00
|
|
|
``end`` ends a block of commands started by one of the following commands:
|
2018-12-16 21:08:41 +00:00
|
|
|
|
2020-03-04 21:06:57 +00:00
|
|
|
- :ref:`begin <cmd-begin>` to start a block of commands
|
|
|
|
- :ref:`function <cmd-function>` to define a function
|
|
|
|
- :ref:`if <cmd-if>`, :ref:`switch <cmd-switch>` to conditionally execute commands
|
|
|
|
- :ref:`while <cmd-while>`, :ref:`for <cmd-for>` to perform commands multiple times
|
2018-12-16 21:08:41 +00:00
|
|
|
|
2018-12-19 20:02:45 +00:00
|
|
|
The ``end`` command does not change the current exit status. Instead, the status after it will be the status returned by the most recent command.
|