mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-03 20:11:15 -03:00
No need to define "cmd-foo" anchors; use :doc:`foo <cmds/foo>`
instead. If we want "cmd-foo" but it should be tested.
See also 38b24c2325 (docs: Use :doc: role when linking to commands,
2022-09-23).
33 lines
938 B
ReStructuredText
33 lines
938 B
ReStructuredText
end - end a block of commands
|
|
=============================
|
|
|
|
Synopsis
|
|
--------
|
|
|
|
.. 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
|
|
|
|
Description
|
|
-----------
|
|
|
|
The **end** keyword ends a block of commands started by one of the following commands:
|
|
|
|
- :doc:`begin <begin>` to start a block of commands
|
|
- :doc:`function <function>` to define a function
|
|
- :doc:`if <if>`, :doc:`switch <switch>` to conditionally execute commands
|
|
- :doc:`while <while>`, :doc:`for <for>` to perform commands multiple times
|
|
|
|
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.
|