Agent Execute Command
data class AgentExecuteCommand(val args: List<String>, val timeOut: Long = 30 * 60L, val workDirectory: String? = null, val debugMode: Boolean = false, val startTask: Boolean = true) : AgentCommand
Execute and arbitrary command / script.
the first argument is the command
if it exists and is a special file (see AgentConfiguration.interpreters) in the work directory (null = root path), it will be executed with an interpreter.