mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 16:35:28 +02:00
pdftotext: add German translation (#9446)
This commit is contained in:
parent
4feafe5e0e
commit
75c743165e
1 changed files with 24 additions and 0 deletions
24
pages.de/common/pdftotext.md
Normal file
24
pages.de/common/pdftotext.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# pdftotext
|
||||
|
||||
> Konvertiere PDF Dateien zum plain text Format.
|
||||
> Weitere Informationen: <https://www.xpdfreader.com/pdftotext-man.html>.
|
||||
|
||||
- Konvertiere `datei.pdf` zu plain text und gib sie über die Standardausgabe aus:
|
||||
|
||||
`pdftotext {{datei.pdf}} -`
|
||||
|
||||
- Konvertiere `datei.pdf` zu plain text und speichere sie als `datei.txt`:
|
||||
|
||||
`pdftotext {{datei.pdf}}`
|
||||
|
||||
- Konvertiere `datei.pdf` zu plain text und erhalte das Layout:
|
||||
|
||||
`pdftotext -layout {{datei.pdf}}`
|
||||
|
||||
- Konvertiere `quelldatei.pdf` zu plain text und speichere sie als `zieldatei.txt`:
|
||||
|
||||
`pdftotext {{quelldatei.pdf}} {{zieldatei.txt}}`
|
||||
|
||||
- Konvertiere Seite 2, 3 und 4 von `quelldatei.pdf` zu plain text und speichere sie als `zieldatei.txt`:
|
||||
|
||||
`pdftotext -f {{2}} -l {{4}} {{quelldatei.pdf}} {{zieldatei.txt}}`
|
Loading…
Add table
Reference in a new issue