diff --git a/Documentation/NuttShell.html b/Documentation/NuttShell.html index 2eeed4e678b..0be5cf5a06f 100644 --- a/Documentation/NuttShell.html +++ b/Documentation/NuttShell.html @@ -8,7 +8,7 @@
Last Updated: January 17, 2014
+Last Updated: January 18, 2014
+
Looping Constructs.
while-do-done and until-do-done looping constructs are also supported.
These work from the command line but are primarily intended for use within NSH scripts
(see the sh command).
@@ -646,7 +646,13 @@ done
The break Command.
+ A break command is also supported.
+ The break command is only valid within the body of the a while or until loop, between the do and done tokens.
+ If the break command is executed within the body of a loop, the loop will immediately terminate and execution will continue with the next command immediately following the done token.
+
CONFIG_NSH_DISABLE_ITEF |
+
+ If scripting is enabled, then then this option can be selected to suppress support for if-then-else-fi sequences in scripts.
+ This would only be set on systems where some minimal scripting is required but if-then-else-fi is not.
+ |
+
CONFIG_NSH_DISABLE_LOOPS |
+
+ If scripting is enabled, then then this option can be selected suppress support for while-do-done and until-do-done sequences in scripts.
+ This would only be set on systems where some minimal scripting is required but looping is not.
+ |
+
CONFIG_NSH_DISABLEBG |
@@ -3979,7 +3999,7 @@ mount -t vfat /dev/ram1 /tmp |