Command | |
---|---|
define=$x:value | Define the value of a variable: - $x = variable name e.g. "$0" or "$1" or "$2" ... "$9" - value = number or text you assign to a variable E.g. define=$1:test_value would assign the text "test_value to variable "$1". |
undefine=$x | Reset the value of a variable. A undefined variable will not be used. - $x = variable name e.g. "$0" or "$1" or "$2" ... "$9" |
variables.name=name | Define a name for the present variable set. You may use this name to lateron recall a named variable set from the variable stack. |
variables.clearall | Un-define all variables.. |
variables.push | Back-up all variables internally onto a variables stack. You have 100 backup levels ! |
variables.pop | Recall last backed-up set of variables from the variables stack. |
variables.restorebyid=ID | Recall a previously backed-up set of variables from the variables stack, using its position in the stack. |
variables.restorebyname=name | Recall a previously backed-up set of variables from the variables stack, using its position in the stack. |
variables.dump | Show all presently set variable's values in the Info/Log tab-sheet. |