web-dev-qa-db-ja.com

lprによる7から17までのページの印刷

lprで7から17までのページを印刷するにはどうすればよいですか?

lpr -P myprinter -o page-ranges=7-17

ここで、myprinterはプリンタの名前です

19
Sathyajith Bhat

Masi、コマンド[〜#〜] is [〜#〜]は、CUPSのオンラインヘルプのUbuntuボックスに記載されています。訪問

http:// localhost:631/help/options.html?TOPIC = Getting + Started&QUERY =#PAGERANGES

私が何を意味するかを見るために。

2
Kurt Pfeifle

man lpには-Pページ範囲のオプション:

    -P page-list
        Specifies which pages to print in the document.  The list can contain a list of numbers and ranges  (#-#)  separated  by  commas,
        e.g.,  "1,3-5,16".   The  page numbers refer to the output pages and not the document's original pages - options like "number-up"
        can affect the numbering of the pages.

これが私がよく使う完全なコマンドです:

lp -P 5-22 -o media=A4 -o number-up=2 -o sides=two-sided-long-Edge -o fit-to-page R-ints.pdf

0
isomorphismes