mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-21 22:22:07 +02:00
ippeve{printer,pcl,ps}: add pages (#11846)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Juri Dispan <juri.dispan@posteo.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
parent
162c5e92e9
commit
7635f3426f
3 changed files with 57 additions and 0 deletions
14
pages/common/ippevepcl.md
Normal file
14
pages/common/ippevepcl.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
# ippevepcl
|
||||
|
||||
> Print to B&W HP PCL laser printers.
|
||||
> Supports HP PCL, PWG Raster and Apple Raster files.
|
||||
> See also: `ippevepcl`, `ippeveprinter`.
|
||||
> More information: <https://openprinting.github.io/cups/doc/man-ippevepcl.html>.
|
||||
|
||||
- Print a file to `stdout` (status and progress messages are sent to `stderr`):
|
||||
|
||||
`ippeveps {{path/to/file}}`
|
||||
|
||||
- Print a file from `stdin` to `stdout`:
|
||||
|
||||
`{{wget -O - https://examplewebsite.com/file}} | ippeveps`
|
29
pages/common/ippeveprinter.md
Normal file
29
pages/common/ippeveprinter.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
# ippeveprinter
|
||||
|
||||
> A simple IPP Everywhere printer server.
|
||||
> See also: `ippeveps`, `ippevepcl`.
|
||||
> More information: <https://openprinting.github.io/cups/doc/man-ippeveprinter.html>.
|
||||
|
||||
- Run the server with a specific service name:
|
||||
|
||||
`ippeveprinter "{{service_name}}"`
|
||||
|
||||
- Load printer attributes from a PPD file:
|
||||
|
||||
`ippeveprinter -P {{path/to/file.ppd}} "{{service_name}}"`
|
||||
|
||||
- Run the `file` command whenever a job is sent to the server:
|
||||
|
||||
`ippeveprinter -c {{/usr/bin/file}} "{{service_name}}"`
|
||||
|
||||
- Specify the directory that will hold the print files (by default, a directory under the user's temporary directory):
|
||||
|
||||
`ippeveprinter -d {{spool_directory}} "{{service_name}}"`
|
||||
|
||||
- Keep the print documents in the spool directory rather than deleting them:
|
||||
|
||||
`ippeveprinter -k "{{service_name}}"`
|
||||
|
||||
- Specify the printer speed in pages/minute unit (10 by default):
|
||||
|
||||
`ippeveprinter -s {{speed}} "{{service_name}}"`
|
14
pages/common/ippeveps.md
Normal file
14
pages/common/ippeveps.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
# ippeveps
|
||||
|
||||
> Print to Adobe PostScript printers.
|
||||
> Supports PDF, PostScript, JPEG, PWG Raster or Apple Raster files.
|
||||
> See also: `ippevepcl`, `ippeveprinter`.
|
||||
> More information: <https://openprinting.github.io/cups/doc/man-ippevepcl.html>.
|
||||
|
||||
- Print a file to `stdout` (status and progress messages are sent to `stderr`):
|
||||
|
||||
`ippeveps {{path/to/file}}`
|
||||
|
||||
- Print a file from `stdin` to `stdout`:
|
||||
|
||||
`{{wget -O - https://examplewebsite.com/file}} | ippeveps`
|
Loading…
Add table
Reference in a new issue