From ee58929bc5df103fe2714bc38a6f0ba0e478da9a Mon Sep 17 00:00:00 2001 From: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com> Date: Sat, 10 Feb 2024 05:07:18 -0300 Subject: [PATCH] ippfind: add page (#12166) --- pages/common/ippfind.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/common/ippfind.md diff --git a/pages/common/ippfind.md b/pages/common/ippfind.md new file mode 100644 index 0000000000..08d204b61b --- /dev/null +++ b/pages/common/ippfind.md @@ -0,0 +1,21 @@ +# ippfind + +> Find services registered with a DNS server or available through local devices. +> See also: `ipptool`, `ippeveprinter`. +> More information: . + +- List IPP printers registered on the network with their status: + +`ippfind --ls` + +- Send a specific PostScript document to every PostScript printer on the network: + +`ippfind --txt-pdl application/postscript --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 --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 regular expression: + +`ippfind --txt-pdl application/postscript --host {{regex}} --exec ipptool -f onepage-letter.ps '{}' print-job.test \;`