From 75c743165e2ca942cf626d229ef68448d9230b62 Mon Sep 17 00:00:00 2001 From: skyjx <95508420+skyjx@users.noreply.github.com> Date: Wed, 30 Nov 2022 03:58:50 +0100 Subject: [PATCH] pdftotext: add German translation (#9446) --- pages.de/common/pdftotext.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages.de/common/pdftotext.md diff --git a/pages.de/common/pdftotext.md b/pages.de/common/pdftotext.md new file mode 100644 index 000000000..6cab6903a --- /dev/null +++ b/pages.de/common/pdftotext.md @@ -0,0 +1,24 @@ +# pdftotext + +> Konvertiere PDF Dateien zum plain text Format. +> Weitere Informationen: . + +- 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}}`