simulate_command
Simulate the execution of a command to test its behavior and output without running it on a live system, ensuring safe and controlled analysis.
Instructions
Simulates the execution of a given command.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Command to execute | |
input | No | Input data |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Command to execute",
"type": "string"
},
"input": {
"default": "",
"description": "Input data",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}