General Commands
This chapter introduces the help and execfile commands.
help
This command displays help information about a given command name and its usage.
Usage:
help <commandname>
Command Arguments:
execfile
Sequentially runs all the commands in the file.
Create a file containing the commands to run (one command per line) and then pass the file name to the execfile command. If an error occurs with a command, none of the remaining commands are executed. If the remaining commands should be executed, even if there are errors returned from previous commands, use the -ignoreError command.
Usage:
execfile <file> [-ignoreError]
Command Arguments:
<file>
[Required] The name of the file(s) to be executed.
ignoreError
Flag to indicate if remaining commands should be executed if an error is returned from a previous command.
The execfile command is not supported through REST (ADAP).