iterm_run
Execute commands directly in iTerm from macOS, with an option to run in a new window, using AppleScript integration for enhanced automation and control.
Instructions
[iTerm terminal operations] Run a command in iTerm
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Command to run in iTerm | |
newWindow | No | Whether to open in a new window (default: false) |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Command to run in iTerm",
"type": "string"
},
"newWindow": {
"default": false,
"description": "Whether to open in a new window (default: false)",
"type": "boolean"
}
},
"required": [
"command"
],
"type": "object"
}