find_package_owner
Identify which Arch Linux package owns a specific file on your system to troubleshoot issues and understand file origins.
Instructions
Find which package owns a specific file on the system. Useful for troubleshooting and understanding file origins. Only works on Arch Linux.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Absolute path to the file (e.g., /usr/bin/vim) |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"description": "Absolute path to the file (e.g., /usr/bin/vim)",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}