2006-10-31 15:23:16 +00:00
|
|
|
\section begin begin - start a new block of code
|
2005-09-20 13:31:55 +00:00
|
|
|
|
|
|
|
\subsection begin-synopsis Synopsis
|
2006-09-19 14:52:03 +00:00
|
|
|
<tt>begin; [COMMANDS...;] end</tt>
|
2005-09-20 13:31:55 +00:00
|
|
|
|
|
|
|
\subsection begin-description Description
|
|
|
|
|
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
|
|
|
\c begin is used to create a new block of code.
|
|
|
|
|
|
|
|
The block
|
2006-07-20 13:33:19 +00:00
|
|
|
is unconditionally executed. <code>begin; ...; end</tt> is equivalent
|
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
|
|
|
to <tt>if true; ...; end</tt>.
|
|
|
|
|
|
|
|
\c begin is used to group a number of commands into a block.
|
|
|
|
This allows the introduction of a new variable scope, redirection of the input or
|
2006-07-20 13:33:19 +00:00
|
|
|
output of a set of commands as a group, or to specify precedence when
|
|
|
|
using the conditional commands like \c and.
|
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
|
|
|
\c begin does not change the current exit status.
|
2006-07-12 17:31:41 +00:00
|
|
|
|
2005-09-20 13:31:55 +00:00
|
|
|
\subsection begin-example Example
|
|
|
|
|
|
|
|
The following code sets a number of variables inside of a block
|
|
|
|
scope. Since the variables are set inside the block and have local
|
|
|
|
scope, they will be automatically deleted when the block ends.
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
begin
|
2006-12-11 13:47:23 +00:00
|
|
|
set -l PIRATE Yarrr
|
2005-09-20 13:31:55 +00:00
|
|
|
...
|
|
|
|
end
|
2006-12-11 13:47:23 +00:00
|
|
|
# This will not output anything, since the PIRATE variable went out
|
|
|
|
# of scope at the end of the block
|
2005-09-20 13:31:55 +00:00
|
|
|
echo $PIRATE
|
|
|
|
</pre>
|
2006-07-20 13:33:19 +00:00
|
|
|
|
|
|
|
In the following code, all output is redirected to the file out.html.
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
begin
|
|
|
|
echo $xml_header
|
|
|
|
echo $html_header
|
2010-09-18 02:18:26 +00:00
|
|
|
if test -e $file
|
2006-07-20 13:33:19 +00:00
|
|
|
...
|
|
|
|
end
|
|
|
|
...
|
|
|
|
|
|
|
|
end > out.html
|
|
|
|
</pre>
|