mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-08 10:51:15 -03:00
Commit doc_src progress.
This is continuing the work I've been doing to remove the :: formatting for the synopsis sections of our manual pages.
This commit is contained in:
@@ -6,23 +6,25 @@ end - end a block of commands
|
||||
Synopsis
|
||||
--------
|
||||
|
||||
::
|
||||
| **begin**
|
||||
| [*COMMANDS*...]
|
||||
| **end**
|
||||
|
||||
begin; [COMMANDS...] end
|
||||
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
|
||||
| **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**
|
||||
|
||||
Description
|
||||
-----------
|
||||
|
||||
``end`` ends a block of commands started by one of the following commands:
|
||||
The **end** keyword ends a block of commands started by one of the following commands:
|
||||
|
||||
- :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
|
||||
|
||||
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.
|
||||
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.
|
||||
|
||||
Reference in New Issue
Block a user