These commands are used when developing and maintaining your scripts. They provide a "Crystal Clear" window into exactly what is going on inside the script.
|
.Mt/\Cmd |
|
Description |
|
.Call |
|
Similar to the internal command
CALL, but calls the current Command Library and invokes any Procedure, Function or
Mount/\Command. |
|
.DeleteMe |
|
Deletes the currently running
script. Must be the very last line in the script. |
|
.ForAll |
|
Used to perform an operation on
the entire output of a command, without breaking it up into individual tokens. |
|
.ForExpand |
|
Performs "delayed expansion" on a
variable inside a FOR loop. |
|
.HideComments |
|
Reverses the effect of
.ShowComments, causing all .Rem commented lines to be hidden (this is
the default setting). |
|
.Rem |
|
Allows comments to be placed
anywhere in a script that a command would be accepted. An extremely valuable tool for troubleshooting, especially when using complex
statements spanning multiple lines. |
|
.ShowComments |
|
Toggles the display of all lines
that have been commented using .Rem. |
|
.Wait |
|
Pause a script for a specified
period of time. Similar to the builtin command PAUSE, but with a
timeout. |