1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
.\"
.\" "$Id: ippfind.man 11027 2013-06-07 01:45:14Z msweet $"
.\"
.\" ippfind man page for CUPS.
.\"
.\" Copyright 2013 by Apple Inc.
.\"
.\" These coded instructions, statements, and computer programs are the
.\" property of Apple Inc. and are protected by Federal copyright
.\" law. Distribution and use rights are outlined in the file "LICENSE.txt"
.\" which should have been included with this file. If this file is
.\" file is missing or damaged, see the license at "http://www.cups.org/".
.\"
.TH ippfind 1 "CUPS" "6 June 2013" "Apple Inc."
.SH NAME
ippfind \- find internet printing protocol printers
.SH SYNOPSIS
.B ippfind
[
.I options
] regtype[,subtype][.domain.] ... [
.I expression ...
]
.B ippfind
[
.I options
] name[.regtype[.domain.]] ... [
.I expression ...
]
.B ippfind
\--help
.B ippfind
\--version
.SH OPTIONS
.TP 5
\--help
Show program help
.TP 5
\--version
Show program version
.TP 5
\-4
Use IPv4 when listing
.TP 5
\-6
Use IPv6 when listing
.TP 5
\-T seconds
Specify find timeout in seconds. If 1 or less, \fIippfind\fR stops as soon as it thinks it has found everything. The default is 1 second.
.TP 5
\-V version
Specifies the IPP version when listing. Supported values are 1.1, 2.0, 2.1, and 2.2.
.SH DESCRIPTION
\fIippfind\fR finds services registered with a DNS server or available through local devices. Its primary purpose is to find IPP printers and show their URIs, show their current status, or run commands. For example, to show the status of all registered IPP printers on your network, run:
.nf
ippfind \--ls
.fi
Similarly, to send a PostScript test page to every PostScript printer, run:
.nf
ippfind \--txt-pdl application/postscript \--exec ipptool \\
\-f onepage-letter.ps '{}' print-job.test \\;
.fi
.SH REGISTRATION TYPES
\fIippfind\fR supports the following registration types:
.TP 5
_http._tcp
HyperText Transport Protocol (HTTP, RFC 2616)
.TP 5
_https._tcp
Secure HyperText Transport Protocol (HTTPS, RFC 2818)
.TP 5
_ipp._tcp
Internet Printing Protocol (IPP, RFC 2911)
.TP 5
_ipps._tcp
Secure Internet Printing Protocol (IPPS, draft)
.TP 5
_printer._tcp
Line Printer Daemon (LPD, RFC 1179)
.SH EXPRESSIONS
\fIippfind\fR supports expressions much like the \fIfind(1)\fR utility. However, unlike \fIfind\fR, \fIippfind\fR uses POSIX regular expressions instead of shell filename matching patterns. If \--exec, \-l, \--ls, \-p, \--print, \--print-name, \-q, \--quiet, \-s, or \-x is not specified, \fIippfind\fR adds \--print to print the service URI of anything it finds. The following expressions are supported:
.TP 5
\-d regex
.TP 5
\--domain regex
True if the domain matches the given regular expression.
.TP 5
\--false
Always false.
.TP 5
\-h regex
.TP 5
\--host regex
True is the hostname matches the given regular expression.
.TP 5
\-l
.TP 5
\--ls
Lists attributes returned by Get-Printer-Attributes for IPP printers and traditional \fIfind\fR "\-ls" output for HTTP URLs. The result is true if the URI is accessible, false otherwise.
.TP 5
\--local
True if the service is local to this computer.
.TP 5
\-n regex
.TP 5
\--name regex
True if the service instance name matches the given regular expression.
.TP 5
\--path regex
True if the URI resource path matches the given regular expression.
.TP 5
\-P number[\-number]
.TP 5
\--port number[\-number]
True if the port matches the given number or range.
.TP 5
\-p
.TP 5
\--print
Prints the URI if the result of previous expressions is true. The result is always true.
.TP 5
\-q
.TP 5
\--quiet
Quiet mode \- just returns the exit codes below.
.TP 5
\-r
.TP 5
\--remote
True if the service is not local to this computer.
.TP 5
\-s
.TP 5
\--print-name
Prints the service instance name if the result of previous expressions is true. The result is always true.
.TP 5
\--true
Always true.
.TP 5
\-t key
.TP 5
\--txt key
True if the TXT record contains the named key.
.TP 5
\--txt-\fIkey\fR regex
True if the TXT record contains the named key and matches the given regular
expression.
.TP 5
\-u regex
.TP 5
\--uri regex
True if the URI matches the given regular expression.
.TP 5
\-x utility [argument ...] ;
.TP 5
\--exec utility [argument ...] ;
Executes the specified program if the current result is true. "{foo}" arguments are replaced with the corresponding value \- see SUBSTITUTIONS below.
.PP
Expressions may also contain modifiers:
.TP 5
( expression )
Group the result of expressions.
.TP 5
! expression
.TP 5
\--not expression
Unary NOT of the expression.
.TP 5
expression expression
.TP 5
expression \--and expression
Logical AND of expressions.
.TP 5
expression \--or expression
Logical OR of expressions.
.SH SUBSTITUTIONS
The substitutions for "{foo}" in \-e and \--exec are:
.TP 5
{}
URI
.TP 5
{service_domain}
Domain name, e.g., "example.com.", "local.", etc.
.TP 5
{service_hostname}
Fully-qualified domain name, e.g., "printer.example.com.", "printer.local.", etc.
.TP 5
{service_name}
Service instance name, e.g., "My Fine Printer".
.TP 5
{service_port}
Port number for server, typically 631 for IPP and 80 for HTTP.
.TP 5
{service_regtype}
DNS-SD registration type, e.g., "_ipp._tcp", "_http._tcp", etc.
.TP 5
{service_scheme}
URI scheme for DNS-SD registration type, e.g., "ipp", "http", etc.
.TP 5
{service_uri}
URI for service, e.g., "ipp://printer.local./ipp/print", "http://printer.local./", etc.
.TP 5
{txt_\fIkey\fR}
Value of TXT record \fIkey\fR (lowercase).
.SH ENVIRONMENT VARIABLES
When executing a program, \fIippfind\fR sets the following environment variables for the matching service registration:
.TP 5
IPPFIND_SERVICE_DOMAIN
Domain name, e.g., "example.com.", "local.", etc.
.TP 5
IPPFIND_SERVICE_HOSTNAME
Fully-qualified domain name, e.g., "printer.example.com.", "printer.local.", etc.
.TP 5
IPPFIND_SERVICE_NAME
Service instance name, e.g., "My Fine Printer".
.TP 5
IPPFIND_SERVICE_PORT
Port number for server, typically 631 for IPP and 80 for HTTP.
.TP 5
IPPFIND_SERVICE_REGTYPE
DNS-SD registration type, e.g., "_ipp._tcp", "_http._tcp", etc.
.TP 5
IPPFIND_SERVICE_SCHEME
URI scheme for DNS-SD registration type, e.g., "ipp", "http", etc.
.TP 5
IPPFIND_SERVICE_URI
URI for service, e.g., "ipp://printer.local./ipp/print", "http://printer.local./", etc.
.TP 5
IPPFIND_TXT_\fIKEY\fR
Values of TXT record \fIKEY\fR (uppercase).
.SH EXIT CODES
\fIippfind\fR returns 0 if the result for all processed expressions is true, 1 if the result of any processed expression is false, 2 if browsing or any query or resolution failed, 3 if an undefined option or invalid expression was specified, and 4 if it ran out of memory.
.SH SEE ALSO
\fIipptool(1)\fR
.SH COPYRIGHT
Copyright 2013 by Apple Inc.
.\"
.\" End of "$Id: ippfind.man 11027 2013-06-07 01:45:14Z msweet $".
.\"
|