lp, lpinfo, lpr, lpstat: add German translation (#9375)

This commit is contained in:
Spicyyboi
2022-12-08 08:24:37 +01:00
committed by GitHub
parent 20bd65192d
commit 1ee48fe5de
4 changed files with 97 additions and 0 deletions

28
pages.de/common/lp.md Executable file
View File

@@ -0,0 +1,28 @@
# lp
> Druckt Dateien.
> Weitere Informationen: <https://manned.org/lp>.
- Drucke die Ausgabe eines Befehls mit dem Standard-Drucker (siehe `lpstat`):
`echo "test" | lp`
- Drucke eine Datei mit dem Standard-Drucker:
`lp {{pfad/zu/datei}}`
- Drucke eine Datei mit einem bestimmten Drucker (siehe `lpstat`):
`lp -d {{druckername}} {{pfad/zu/datei}}`
- Drucke N Kopien einer Datei mit dem Standarddrucker (wobei N die Anzahl gewünschter Kopien ist):
`lp -n {{N}} {{pfad/zu/datei}}`
- Drucke nur bestimmte Seiten mit dem Standarddrucker (drucke Seiten 1, 3-5 und 16):
`lp -P 1,3-5,16 {{pfad/zu/datei}}`
- Führe einen aufgehaltenen Druckauftrag durch:
`lp -i {{job_id}} -H resume`