Files
fil/docs/snippets/cli/extract_basic.md
Henrik Jess Nielsen b4c07d3693
All checks were successful
Deploy fil (kreuzberg) / deploy (push) Successful in 49s
Nomad changes
2026-06-01 23:40:55 +02:00

11 lines
253 B
Markdown

```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
```