fish-shell/doc_src/if.txt

41 lines
1.2 KiB
Text
Raw Normal View History

\section if if - conditionally execute a command
\subsection if-synopsis Synopsis
2014-08-01 12:25:41 +00:00
\fish{synopsis}
if CONDITION; COMMANDS_TRUE...; [else if CONDITION2; COMMANDS_TRUE2...;] [else; COMMANDS_FALSE...;] end
\endfish
\subsection if-description Description
`if` will execute the command `CONDITION`. If the condition's
exit status is 0, the commands `COMMANDS_TRUE` will execute. If the
exit status is not 0 and `else` is given, `COMMANDS_FALSE` will
2010-09-18 02:18:26 +00:00
be executed.
In order to use the exit status of multiple commands as the condition
of an if block, use <a href="#begin">`begin; ...; end`</a> and
the short circuit commands <a href="commands.html#and">`and`</a>
and <a href="commands.html#or">`or`</a>.
The exit status of the last foreground command to exit can always be
accessed using the <a href="index.html#variables-status">$status</a>
variable.
\subsection if-example Example
\fish
if test -f foo.txt
echo foo.txt exists
2012-09-03 20:24:01 +00:00
else if test -f bar.txt
echo bar.txt exists
else
echo foo.txt and bar.txt do not exist
end
\endfish
will print `foo.txt exists` if the file foo.txt
2010-09-18 02:18:26 +00:00
exists and is a regular file, otherwise it will print
`bar.txt exists` if the file bar.txt exists
and is a regular file, otherwise it will print
`foo.txt and bar.txt do not exist`.