2005-09-20 13:31:55 +00:00
|
|
|
\section end end - end a block of commands.
|
|
|
|
|
|
|
|
\subsection end-synopsis Synopsis
|
2006-09-19 14:52:03 +00:00
|
|
|
<pre>
|
2006-06-03 23:15:17 +00:00
|
|
|
begin; [COMMANDS...] end
|
2006-09-19 14:52:03 +00:00
|
|
|
if CONDITION; COMMANDS_TRUE...; [else; COMMANDS_FALSE...;] end
|
|
|
|
while CONDITION; COMMANDS...; end
|
|
|
|
for VARNAME in [VALUES...]; COMMANDS...; end
|
|
|
|
switch VALUE; [case [WILDCARD...]; [COMMANDS...]; ...] end
|
2005-09-20 13:31:55 +00:00
|
|
|
</pre>
|
|
|
|
|
|
|
|
\subsection end-description Description
|
|
|
|
<tt>end</tt> ends a block of commands. For more information, read the
|
2006-07-20 13:33:19 +00:00
|
|
|
documentation for the block constructs, such as \c if, \c for and \c
|
2005-09-20 13:31:55 +00:00
|
|
|
while.
|
2006-06-03 23:15:17 +00:00
|
|
|
|
2006-07-12 17:31:41 +00:00
|
|
|
The \c end command does not change the current exit status.
|