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
The end keyword ends a block of commands started by one of the following commands:
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.
© 2005-2009 Axel Liljencrantz, 2009-2026 fish-shell contributors
Licensed under the GNU General Public License, version 2.
https://fishshell.com/docs/4.5/cmds/end.html