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

33 lines
783 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# lpr
> 打印文件。
> 另见:`lpstat` 和 `lpadmin`。
> 更多信息:<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}}`