Files
tldr/pages.zh/common/lpr.md

783 B
Raw Permalink Blame History

lpr

打印文件。 另见:lpstatlpadmin。 更多信息:https://openprinting.github.io/cups/doc/man-lpr.html

  • 打印文件到默认打印机:

lpr {{path/to/file}}

  • 打印2份

lpr -# {{2}} {{path/to/file}}

  • 打印到指定打印机:

lpr -P {{printer}} {{path/to/file}}

  • 打印单页例如2或页范围例如216

lpr -o page-ranges={{2|2-16}} {{path/to/file}}

  • 双面打印,可以选择纵向(长边)或横向(短边):

lpr -o sides={{two-sided-long-edge|two-sided-short-edge}} {{path/to/file}}

  • 设置纸张大小(根据设置可能有更多选项):

lpr -o media={{a4|letter|legal}} {{path/to/file}}

  • 每张纸打印多页:

lpr -o number-up={{2|4|6|9|16}} {{path/to/file}}