mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 01:18:00 +01:00
5a9da6c4d6
also made ordering of arguments consistent
27 lines
702 B
Markdown
27 lines
702 B
Markdown
# tabula
|
|
|
|
> Extract tables from PDF files.
|
|
|
|
- Extract all tables from a PDF to a CSV file:
|
|
|
|
`tabula -o {{file.csv}} {{file.pdf}}`
|
|
|
|
- Extract all tables from a PDF to a JSON file:
|
|
|
|
`tabula --format JSON -o {{file.json}} {{file.pdf}}`
|
|
|
|
- Extract tables from pages 1, 2, 3, and 6 of a PDF:
|
|
|
|
`tabula --pages {{1-3,6}} {{file.pdf}}`
|
|
|
|
- Extract tables from page 1 of a PDF, guessing which portion of the page to examine:
|
|
|
|
`tabula --guess --pages {{1}} {{file.pdf}}`
|
|
|
|
- Extract all tables from a PDF, using ruling lines to determine cell boundaries:
|
|
|
|
`tabula --spreadsheet {{file.pdf}}`
|
|
|
|
- Extract all tables from a PDF, using blank space to determine cell boundaries:
|
|
|
|
`tabula --no-spreadsheet {{file.pdf}}`
|