The set Command

Most of Intercom's customizable features are controled through the set command. With set, you can both display and modify the values of configuration variables. Typing set by itself at the command-prompt will display all the variables available, their values, and a brief description of the variable. Some variables will be fairly obvious as to what they do, others undoubtedly will not.

To set a variable, you use a construct like this

set <variable> <value>

Note

Replace <variable> and <value> with the specific variable and value to set.

For example, to set the username to John Smith, you would execute the following command.

intercom: set username "John Smith"

Notice the quotes around John Smith, this is necessary when setting a variable to a value which contains spaces. Failure to use proper quoting will result in an error.