Current Page:
NeXtMidas Training
Getting Started - Part 1
Results Parameters
GET Command
|
|
- The
GET Command:
- The
GET command can be used to display the value of a result.
- It takes in one parameter
LABEL= . The label is the name of the result.
- Example:
nM> get x
L: X = 10
nM> get y
L: Y = 50
nM> get str
9S: STR = My String
- You can also get multiple results at once. To repeat the example above:
nM> get x y str
L: X = 10
L: Y = 50
9S: STR = My String
- You can also use wildcards using an asterisk at the end of
the label to specify everything that begins with the given label.
nM> set x2 20
nM> set x3 30
nM> get x*
L: X = 10
L: X2 = 20
L: X3 = 30
X-Midas Users Take Note: |
X-Midas does not have the GET command, it uses RESULTS in place of it.
|
|
|
|