2005-09-20 13:31:55 +00:00
|
|
|
\section switch switch - conditionally execute a block of commands
|
|
|
|
|
|
|
|
\subsection switch-synopsis Synopsis
|
2014-08-01 02:37:32 +00:00
|
|
|
\fish{syn}
|
|
|
|
switch VALUE; [case [WILDCARD...]; [COMMANDS...]; ...] end
|
|
|
|
\endfish
|
2005-09-20 13:31:55 +00:00
|
|
|
|
|
|
|
\subsection switch-description Description
|
|
|
|
|
2014-08-01 02:37:32 +00:00
|
|
|
`switch` performs one of several blocks of commands, depending on whether
|
|
|
|
a specified value equals one of several wildcarded values. `case` is used
|
|
|
|
together with the `switch` statement in order to determine which block should
|
Help cleanup
Large list of changes, including formatting and typos for most commands.
More substantive changes have been made to alias, bind, block, break,
builtin, case, cd, commandline, count, else, emit, fish_config, funced,
function, functions, history, math, mimedb, nextd, not, popd, prevd,
pushd, pwd, random, read, set, set_color, switch, test, trap, type,
ulimit, umask, and while.
2013-05-12 07:56:01 +00:00
|
|
|
be executed.
|
2006-04-21 08:35:29 +00:00
|
|
|
|
2014-08-01 02:37:32 +00:00
|
|
|
Each `case` command is given one or more parameters. The first `case`
|
2006-04-21 08:35:29 +00:00
|
|
|
command with a parameter that matches the string specified in the
|
2014-08-01 02:37:32 +00:00
|
|
|
switch command will be evaluated. `case` parameters may contain
|
2006-04-21 08:35:29 +00:00
|
|
|
wildcards. These need to be escaped or quoted in order to avoid
|
|
|
|
regular wildcard expansion using filenames.
|
|
|
|
|
Help cleanup
Large list of changes, including formatting and typos for most commands.
More substantive changes have been made to alias, bind, block, break,
builtin, case, cd, commandline, count, else, emit, fish_config, funced,
function, functions, history, math, mimedb, nextd, not, popd, prevd,
pushd, pwd, random, read, set, set_color, switch, test, trap, type,
ulimit, umask, and while.
2013-05-12 07:56:01 +00:00
|
|
|
Note that fish does not fall through on case statements. Only the
|
|
|
|
first matching case is executed.
|
2005-09-20 13:31:55 +00:00
|
|
|
|
Help cleanup
Large list of changes, including formatting and typos for most commands.
More substantive changes have been made to alias, bind, block, break,
builtin, case, cd, commandline, count, else, emit, fish_config, funced,
function, functions, history, math, mimedb, nextd, not, popd, prevd,
pushd, pwd, random, read, set, set_color, switch, test, trap, type,
ulimit, umask, and while.
2013-05-12 07:56:01 +00:00
|
|
|
Note that command substitutions in a case statement will be
|
|
|
|
evaluated even if its body is not taken. All substitutions, including
|
|
|
|
command substitutions, must be performed before the value can be compared
|
|
|
|
against the parameter.
|
2006-09-19 14:52:03 +00:00
|
|
|
|
2005-09-20 13:31:55 +00:00
|
|
|
\subsection switch-example Example
|
|
|
|
|
2006-09-19 14:52:03 +00:00
|
|
|
If the variable \$animal contains the name of an animal, the following
|
|
|
|
code would attempt to classify it:
|
2005-09-20 13:31:55 +00:00
|
|
|
|
2014-08-01 02:37:32 +00:00
|
|
|
\fish
|
2005-09-20 13:31:55 +00:00
|
|
|
switch $animal
|
|
|
|
case cat
|
|
|
|
echo evil
|
|
|
|
case wolf dog human moose dolphin whale
|
|
|
|
echo mammal
|
2006-01-23 23:17:06 +00:00
|
|
|
case duck goose albatross
|
2005-09-20 13:31:55 +00:00
|
|
|
echo bird
|
|
|
|
case shark trout stingray
|
|
|
|
echo fish
|
2006-04-21 08:35:29 +00:00
|
|
|
case '*'
|
|
|
|
echo I have no idea what a $animal is
|
2005-09-20 13:31:55 +00:00
|
|
|
end
|
2014-08-01 02:37:32 +00:00
|
|
|
\endfish
|
2005-09-20 13:31:55 +00:00
|
|
|
|
2014-08-01 02:37:32 +00:00
|
|
|
If the above code was run with `$animal` set to `whale`, the output
|
|
|
|
would be `mammal`.
|
2005-09-20 13:31:55 +00:00
|
|
|
|