Files
fil/docs/snippets/cli/extract_basic.md

11 lines
253 B
Markdown
Raw Permalink Normal View History

2026-06-01 23:40:55 +02:00
```bash title="Bash"
# Extract to stdout
kreuzberg extract document.pdf
# Save to file using shell redirection
kreuzberg extract document.pdf > output.txt
# Extract with JSON format (includes metadata)
kreuzberg extract document.pdf --format json
```