doc_src/cmds/end.rst
.. synopsis::
begin
[COMMANDS ...]
end
.. synopsis::
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
The end keyword ends a block of commands started by one of the following commands:
begin <begin> to start a block of commandsfunction <function> to define a functionif <if>, :doc:switch <switch> to conditionally execute commandswhile <while>, :doc:for <for> to perform commands multiple timesThe end keyword does not change the current exit status. Instead, the status after it will be the status returned by the most recent command.