Back to Fish

end - end a block of commands¶

site/docs/current/cmds/end.html

latest972 B
Original Source

end - end a block of commands

Synopsis

begin[COMMANDS ...]end
function NAME [OPTIONS]; COMMANDS ...; endif CONDITION; COMMANDS\_TRUE ...; [else; COMMANDS\_FALSE ...;] endswitch VALUE; [case [WILDCARD ...]; [COMMANDS ...]; ...] endwhile CONDITION; COMMANDS ...; endfor VARNAME in [VALUES ...]; COMMANDS ...; end

Description

The end keyword ends a block of commands started by one of the following commands:

  • begin to start a block of commands

  • function to define a function

  • if, switch to conditionally execute commands

  • while, 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.