HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

ippfind — Find services registered with a DNS server or available through local devices. See also: `ipptool`,

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandservicesfindippfindregisteredcliwithdns

Problem

How to use the ippfind command: Find services registered with a DNS server or available through local devices. See also: ipptool, ippeveprinter. More information: <https://openprinting.github.io/cups/doc/man-ippfind.html>.

Solution

ippfind — Find services registered with a DNS server or available through local devices. See also: ipptool, ippeveprinter. More information: <https://openprinting.github.io/cups/doc/man-ippfind.html>.

List IPP printers registered on the network with their status:
ippfind {{[-l|--ls]}}


Send a specific PostScript document to every PostScript printer on the network:
ippfind --txt-pdl application/postscript {{[-x|--exec]}} ipptool -f {{path/to/document.ps}} '{}' print-job.test \;


Send a PostScript test document to every PostScript printer on the network:
ippfind --txt-pdl application/postscript {{[-x|--exec]}} ipptool -f onepage-letter.ps '{}' print-job.test \;


Send a PostScript test document to every PostScript printer on the network, whose name matches a regex:
ippfind --txt-pdl application/postscript {{[-h|--host]}} {{regex}} {{[-x|--exec]}} ipptool -f onepage-letter.ps '{}' print-job.test \;

Code Snippets

List IPP printers registered on the network with their status

ippfind {{[-l|--ls]}}

Send a specific PostScript document to every PostScript printer on the network

ippfind --txt-pdl application/postscript {{[-x|--exec]}} ipptool -f {{path/to/document.ps}} '{}' print-job.test \;

Send a PostScript test document to every PostScript printer on the network

ippfind --txt-pdl application/postscript {{[-x|--exec]}} ipptool -f onepage-letter.ps '{}' print-job.test \;

Send a PostScript test document to every PostScript printer on the network, whose name matches a `regex`

ippfind --txt-pdl application/postscript {{[-h|--host]}} {{regex}} {{[-x|--exec]}} ipptool -f onepage-letter.ps '{}' print-job.test \;

Context

tldr-pages: common/ippfind

Revisions (0)

No revisions yet.