Print Files - Print Files on Linux, macOS | Online Free DevTools by Hexmos
Print files with lp on Linux and macOS. Easily send files to printers, specify printers, and manage print jobs from the command line. Free online tool, no registration required.
lp
Print files. More information: https://manned.org/lp.
- Print the output of a command to the default printer (see
lpstatcommand):
echo "test" | lp
- Print a file to the default printer:
lp {{path/to/filename}}
- Print a file to a named printer (see
lpstatcommand):
lp -d {{printer_name}} {{path/to/filename}}
- Print
ncopies of a file to the default printer:
lp -n {{n}} {{path/to/filename}}
- Print only certain pages to the default printer (print pages 1, 3-5, and 16):
lp -P 1,3-5,16 {{path/to/filename}}
- Resume printing a job:
lp -i {{job_id}} -H resume
