AddVar
To get the AddVar keyword in the command line type AddVar or the shortcut Ad in the command line.
Description
Section titled “Description”AddVar is a function keyword to change or extend content of show specific variables.
Syntax
Section titled “Syntax”AddVar $variablename = numericvalue
AddVar $variablename = “text”
Examples
Section titled “Examples”[Channel]> SetVar $myname = “John”
- Sets the variable $myname to John
[Channel]> AddVar $myname = ” Doe”
- Sets the variable $myname to John Doe
[Channel]> SetVar $mycounter = 5
- Sets the variable $mycounter to 5
[Channel]> AddVar $mycounter = 6
- Sets the variable $mycounter to 11