summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2018-12-06 14:17:23 -0500
committerMichael R Sweet <michael.r.sweet@gmail.com>2018-12-06 14:17:23 -0500
commit8e52928cfd69bbe91b9f610d62374009b37c2088 (patch)
tree226d8460be4b3946892ea02c51f3ace98d352d58 /man
parentdf4101bff6f03d551bf6ec81082f8878d2bcc85a (diff)
downloadcups-8e52928cfd69bbe91b9f610d62374009b37c2088.tar.gz
Add --help usage for all System V commands (Issue #5326)
Diffstat (limited to 'man')
-rw-r--r--man/lp.man54
-rw-r--r--man/lpr.man50
2 files changed, 20 insertions, 84 deletions
diff --git a/man/lp.man b/man/lp.man
index d6bba8833..9cde2c5ee 100644
--- a/man/lp.man
+++ b/man/lp.man
@@ -1,12 +1,13 @@
.\"
.\" lp man page for CUPS.
.\"
-.\" Copyright 2007-2016 by Apple Inc.
-.\" Copyright 1997-2006 by Easy Software Products.
+.\" Copyright © 2007-2018 by Apple Inc.
+.\" Copyright © 1997-2006 by Easy Software Products.
.\"
-.\" Licensed under Apache License v2.0. See the file "LICENSE" for more information.
+.\" Licensed under Apache License v2.0. See the file "LICENSE" for more
+.\" information.
.\"
-.TH lp 1 "CUPS" "2 May 2016" "Apple Inc."
+.TH lp 1 "CUPS" "6 December 2018" "Apple Inc."
.SH NAME
lp \- print files
.SH SYNOPSIS
@@ -158,44 +159,16 @@ Aside from the printer-specific options reported by the
.BR lpoptions (1)
command, the following generic options are available:
.TP 5
-\fB\-o collate=true\fR
-Prints collated copies.
-.TP 5
-\fB\-o fit\-to\-page\fR
-Scales the print file to fit on the page.
-.TP 5
-\fB\-o job-hold-until=\fIwhen\fR
-Holds the job until the specified local time.
-"when" can be "indefinite" to hold the until released, "day-time" to print the job between 6am and 6pm local time, "night" to print the job between 6pm and 6am local time, "second-shift" to print the job between 4pm and 12am local time, "third-shift" to print the job between 12am and 8am local time, or "weekend" to print the job on Saturday or Sunday.
-.TP 5
-\fB\-o job-hold-until=\fIhh:mm\fR
-Holds the job until the specified time in hours and minutes UTC.
-.TP 5
-\fB\-o job-priority=\fIpriority\fR
-Set the priority to a value from 1 (lowest) to 100 (highest), which influences when a job is scheduled for printing.
-The default priority is typically 50.
-.TP 5
\fB\-o job-sheets=\fIname\fR\fR
Prints a cover page (banner) with the document.
The "name" can be "classified", "confidential", "secret", "standard", "topsecret", or "unclassified".
.TP 5
-\fB\-o job-sheets=\fIstart-name,end-name\fR\fR
-Prints cover pages (banners) with the document.
-.TP 5
\fB\-o media=\fIsize\fR
Sets the page size to \fIsize\fR. Most printers support at least the size names "a4", "letter", and "legal".
.TP 5
-\fB\-o mirror\fR
-Mirrors each page.
-.TP 5
\fB\-o number\-up=\fR{\fI2|4|6|9|16\fR}
Prints 2, 4, 6, 9, or 16 document (input) pages on each output page.
.TP 5
-\fB\-o number\-up\-layout=\fIlayout\fR
-Specifies the layout of pages with the "number-up" option.
-The "layout" string can be "btlr", "btrl", "lrbt", "lrtb", "rlbt", "rltb", "tblr", or "tbrl" - the first two letters determine the column order while the second two letters determine the row order.
-"bt" is bottom-to-top, "lr" is left-to-right, "rl" is right-to-left, and "tb" is top-to-bottom.
-.TP 5
\fB\-o orientation\-requested=4\fR
Prints the job in landscape (rotated 90 degrees counter-clockwise).
.TP 5
@@ -205,17 +178,12 @@ Prints the job in landscape (rotated 90 degrees clockwise).
\fB\-o orientation\-requested=6\fR
Prints the job in reverse portrait (rotated 180 degrees).
.TP 5
-\fB\-o outputorder=reverse\fR
-Prints pages in reverse order.
+\fB\-o print\-quality=3\fR
.TP 5
-\fB\-o page\-border=\fIborder\fR
-Prints a border around each document page.
-"border" is "double", "double\-thick", "single", or "single\-thick".
+\fB\-o print\-quality=4\fR
.TP 5
-\fB\-o page\-ranges=\fIpage-list\fR
-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.
+\fB\-o print\-quality=5\fR
+Specifies the output quality - draft (3), normal (4), or best (5).
.TP 5
\fB\-o sides=one\-sided\fR
Prints on one side of the paper.
@@ -243,10 +211,10 @@ Print a double-sided legal document to a printer called "foo":
lp -d foo -o media=legal -o sides=two-sided-long-edge filename
.fi
-Print a presentation document 2-up to a printer called "foo":
+Print a presentation document 2-up to a printer called "bar":
.nf
- lp -d foo -o number-up=2 filename
+ lp -d bar -o number-up=2 filename
.fi
.SH SEE ALSO
.BR cancel (1),
diff --git a/man/lpr.man b/man/lpr.man
index c7d517705..cae4ac041 100644
--- a/man/lpr.man
+++ b/man/lpr.man
@@ -1,12 +1,13 @@
.\"
.\" lpr man page for CUPS.
.\"
-.\" Copyright 2007-2016 by Apple Inc.
-.\" Copyright 1997-2006 by Easy Software Products.
+.\" Copyright © 2007-2018 by Apple Inc.
+.\" Copyright © 1997-2006 by Easy Software Products.
.\"
-.\" Licensed under Apache License v2.0. See the file "LICENSE" for more information.
+.\" Licensed under Apache License v2.0. See the file "LICENSE" for more
+.\" information.
.\"
-.TH lpr 1 "CUPS" "2 May 2016" "Apple Inc."
+.TH lpr 1 "CUPS" "6 December 2018" "Apple Inc."
.SH NAME
lpr \- print files
.SH SYNOPSIS
@@ -113,44 +114,16 @@ Aside from the printer-specific options reported by the
.BR lpoptions (1)
command, the following generic options are available:
.TP 5
-\fB\-o collate=true\fR
-Prints collated copies.
-.TP 5
-\fB\-o fit\-to\-page\fR
-Scales the print file to fit on the page.
-.TP 5
-\fB\-o job-hold-until=\fIwhen\fR
-Holds the job until the specified local time.
-"when" can be "indefinite" to hold the until released, "day-time" to print the job between 6am and 6pm local time, "night" to print the job between 6pm and 6am local time, "second-shift" to print the job between 4pm and 12am local time, "third-shift" to print the job between 12am and 8am local time, or "weekend" to print the job on Saturday or Sunday.
-.TP 5
-\fB\-o job-hold-until=\fIhh:mm\fR
-Holds the job until the specified time in hours and minutes UTC.
-.TP 5
-\fB\-o job-priority=\fIpriority\fR
-Set the priority to a value from 1 (lowest) to 100 (highest), which influences when a job is scheduled for printing.
-The default priority is typically 50.
-.TP 5
\fB\-o job-sheets=\fIname\fR\fR
Prints a cover page (banner) with the document.
The "name" can be "classified", "confidential", "secret", "standard", "topsecret", or "unclassified".
.TP 5
-\fB\-o job-sheets=\fIstart-name,end-name\fR\fR
-Prints cover pages (banners) with the document.
-.TP 5
\fB\-o media=\fIsize\fR
Sets the page size to \fIsize\fR. Most printers support at least the size names "a4", "letter", and "legal".
.TP 5
-\fB\-o mirror\fR
-Mirrors each page.
-.TP 5
\fB\-o number\-up=\fR{\fI2|4|6|9|16\fR}
Prints 2, 4, 6, 9, or 16 document (input) pages on each output page.
.TP 5
-\fB\-o number\-up\-layout=\fIlayout\fR
-Specifies the layout of pages with the "number-up" option.
-The "layout" string can be "btlr", "btrl", "lrbt", "lrtb", "rlbt", "rltb", "tblr", or "tbrl" - the first two letters determine the column order while the second two letters determine the row order.
-"bt" is bottom-to-top, "lr" is left-to-right, "rl" is right-to-left, and "tb" is top-to-bottom.
-.TP 5
\fB\-o orientation\-requested=4\fR
Prints the job in landscape (rotated 90 degrees counter-clockwise).
.TP 5
@@ -160,17 +133,12 @@ Prints the job in landscape (rotated 90 degrees clockwise).
\fB\-o orientation\-requested=6\fR
Prints the job in reverse portrait (rotated 180 degrees).
.TP 5
-\fB\-o outputorder=reverse\fR
-Prints pages in reverse order.
+\fB\-o print\-quality=3\fR
.TP 5
-\fB\-o page\-border=\fIborder\fR
-Prints a border around each document page.
-"border" is "double", "double\-thick", "single", or "single\-thick".
+\fB\-o print\-quality=4\fR
.TP 5
-\fB\-o page\-ranges=\fIpage-list\fR
-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.
+\fB\-o print\-quality=5\fR
+Specifies the output quality - draft (3), normal (4), or best (5).
.TP 5
\fB\-o sides=one\-sided\fR
Prints on one side of the paper.