1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/lp.md
Lena 6fd816e36e
pages/*: use lowercase n for integer placeholders (#16033)
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2025-03-27 21:23:12 +05:30

28 lines
605 B
Markdown

# lp
> Print files.
> More information: <https://manned.org/lp>.
- Print the output of a command to the default printer (see `lpstat` command):
`echo "test" | lp`
- Print a file to the default printer:
`lp {{path/to/filename}}`
- Print a file to a named printer (see `lpstat` command):
`lp -d {{printer_name}} {{path/to/filename}}`
- Print `n` copies 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`