check_command_exists
Verify the existence of a specific Unix command on the system. Provides immediate confirmation for command availability, enabling efficient troubleshooting and execution planning.
Instructions
Check if a command exists on the system.
Args: command: The command to check
Returns: Information about whether the command exists
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"title": "Command",
"type": "string"
}
},
"required": [
"command"
],
"title": "check_command_existsArguments",
"type": "object"
}