Search for variable names
Use wildcards * and ? |
DDUMP %NOMAD* |
Dumps only those variables starting with %NOMAD
. |
DDUMP CUST.* |
Dumps only those variables from an IOLIST read
from a file with ...,REC=CUST$,... |
DDUMP %*ABC$ |
Dumps only global string variables ending with
'ABC$'. |
DDUMP ? |
Dumps only 1 char long variables. |
Search for contents and dump only those variables
Use a # in front of the searchstring |
DDUMP #software |
Dumps only those variables containing the word
'software', not in the name of the variable, but in the contents of the string. |