diff --git a/Documentation/NuttShell.html b/Documentation/NuttShell.html index 545f4f1ae4..8ed1e2ed48 100644 --- a/Documentation/NuttShell.html +++ b/Documentation/NuttShell.html @@ -932,10 +932,10 @@ fi
while-do-done
.
- Execute [sequence of <cmd>]
as long as <cmd>
has an exit status of zero (or non-zero if inverted with !
).
+ Execute [sequence of <cmd>]
as long as <cmd>
has an exit status of zero.
The syntax is as follows:
-while [!] <cmd> +while <cmd> do [sequence of <cmd>] done @@ -944,10 +944,10 @@ done
until-do-done
- Execute [sequence of <cmd>]
as long as <cmd>
has a non-zero exit status (or zero if inverted with !
).
+ Execute [sequence of <cmd>]
as long as <cmd>
has a non-zero exit status.
The syntax is as follows:
-until [!] <cmd> +until <cmd> do [sequence of <cmd>] done @@ -961,9 +961,6 @@ done The command success value of zero is treated true; a non-zero command failure value is treated false. Thetest
command is frequently used for comparisons. -- Note that
while
is equivalent tountil
if the command result is inverted. -