11 lines
253 B
Markdown
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
|
|
```
|