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
|
|
|
|
2021-12-17 21:58:38 +00:00
|
|
|
| **begin**
|
|
|
|
| [*COMMANDS*...]
|
|
|
|
| **end**
|
2018-12-18 01:58:24 +00:00
|
|
|
|
2021-12-17 21:58:38 +00:00
|
|
|
| **function** *NAME* [*OPTIONS*]; *COMMANDS*...; **end**
|
|
|
|
| **if** *CONDITION*; *COMMANDS_TRUE*...; [**else**; *COMMANDS_FALSE*...;] **end**
|
|
|
|
| **switch** *VALUE*; [**case** [*WILDCARD*...]; [*COMMANDS*...]; ...] **end**
|
|
|
|
| **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
|
|
|
|
2021-12-17 21:58:38 +00:00
|
|
|
The **end** keyword 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
|
|
|
|
2021-12-17 21:58:38 +00:00
|
|
|
The **end** keyword does not change the current exit status.
|
|
|
|
Instead, the status after it will be the status returned by the most recent command.
|