list_package_files
Display all files owned by an Arch Linux package. Filter results using regex patterns to locate specific configuration files or directories.
Instructions
List all files owned by a package. Supports optional filtering by pattern. Only works on Arch Linux.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| package_name | Yes | Name of the package | |
| filter_pattern | No | Optional regex pattern to filter files (e.g., '*.conf' or '/etc/') |
Input Schema (JSON Schema)
{
"properties": {
"filter_pattern": {
"description": "Optional regex pattern to filter files (e.g., '*.conf' or '/etc/')",
"type": "string"
},
"package_name": {
"description": "Name of the package",
"type": "string"
}
},
"required": [
"package_name"
],
"type": "object"
}