| |||
| Home > DS-5 Debugger commands > DS-5 Debugger commands listed in alphabetical order > info variables | |||
This command displays the name and data types of global and static variables.
[info variablesexpression]
Where:
expressionSpecifies a symbol name or a wildcard expression. You can use wildcard expressions to enhance your pattern matching.
If no is
specified then all global and static variables are displayed.expression
Example 70. info variables
info variables # Display info for all variables info variables num # Display info for num variable info variables m* # Display info for names starting with m # (use when set wildcard-style=glob) info variables my_var[0-9]+ # Display info for names with my_var followed # by a number (use when set wildcard-style=regex)