add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

33
pages.zh/common/lpr.md Normal file
View File

@@ -0,0 +1,33 @@
# 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}}`