mqscript_sys_shell
Execute system shell commands to control mobile devices, automate tasks, and manage system operations through MQScript automation scripts.
Instructions
Execute system shell command
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Shell command to execute | |
resultVariable | No | Variable name to store result | shellResult |
waitForCompletion | No | Wait for command completion |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Shell command to execute",
"type": "string"
},
"resultVariable": {
"default": "shellResult",
"description": "Variable name to store result",
"type": "string"
},
"waitForCompletion": {
"default": true,
"description": "Wait for command completion",
"type": "boolean"
}
},
"required": [
"command"
],
"type": "object"
}