show_file_words
Retrieve indexed words and metadata from files using KDE's Baloo search system to analyze content and properties of specific documents.
Instructions
Show indexed content & meta-data in a file using KDE balooshow.
This tool retrieves all the indexed words & meta-data from a specific file that has been indexed by KDE's Baloo search system.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| path | Yes | The absolute path to the file to show indexed words & meta-data for | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "path": {
      "description": "The absolute path to the file to show indexed words & meta-data for",
      "type": "string"
    }
  },
  "required": [
    "path"
  ],
  "type": "object"
}