Controlling print jobs with shell commands
Print Center
Use shell commands to start and manage print jobs without too much clicking, while easily avoiding problems with specific file formats.
If you want to print PDF files, you would normally open them individually with a PDF viewer such as Okular or Atril and start printing from there. For starters, this takes up some of your valuable time, and there is a risk of overlooking and omitting some files. Compared to this, printing at the command line often only involves a single line of input if you are working with specific file formats, more specifically Postscript and PDF.
Printing with lpr
You can use the lp
and lpr
commands to print one or multiple files. The calls are the same for sending a print command to the default printer: lp FILE
and lpr FILE
. If you want to output the job to a specific device, you need to pass in the job name using the -d
parameter (for lp
) or -P
(for lpr
). A call via a pipe also works: echo "Hi!" | lpr
or echo "Hi!" | lp
put your output directly onto paper. You can request multiple printouts by stipulating -n NUMBER
(for lp
) or -# NUMBER
(for lpr
).
A print job for multiple files in a single command combines the pages into a single print job for both lp
and lpr
. This can cause problems in the case of printer malfunctions, for example, if the printer breaks down and pages are swallowed up due to a paper jam. Besides this, you only see the name of the last file to be printed in alphabetic order in the print job query. Although the lpq
command displays the complete queue, this can also lead to problems in practical terms if you have large-scale combined print jobs. It takes some effort to identify a file that has not been printed due to a printer error and to start a reprint. Starting the jobs individually offers you a better overview. A small for
construct (Listing 1) helps here. Figure 1 illustrates the difference between the two methods of starting print jobs.
[...]
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.

News
-
System76 Releases COSMIC Alpha 7
With scores of bug fixes and a really cool workspaces feature, COSMIC is looking to soon migrate from alpha to beta.
-
OpenMandriva Lx 6.0 Available for Installation
The latest release of OpenMandriva has arrived with a new kernel, an updated Plasma desktop, and a server edition.
-
TrueNAS 25.04 Arrives with Thousands of Changes
One of the most popular Linux-based NAS solutions has rolled out the latest edition, based on Ubuntu 25.04.
-
Fedora 42 Available with Two New Spins
The latest release from the Fedora Project includes the usual updates, a new kernel, an official KDE Plasma spin, and a new System76 spin.
-
So Long, ArcoLinux
The ArcoLinux distribution is the latest Linux distribution to shut down.
-
What Open Source Pros Look for in a Job Role
Learn what professionals in technical and non-technical roles say is most important when seeking a new position.
-
Asahi Linux Runs into Issues with M4 Support
Due to Apple Silicon changes, the Asahi Linux project is at odds with adding support for the M4 chips.
-
Plasma 6.3.4 Now Available
Although not a major release, Plasma 6.3.4 does fix some bugs and offer a subtle change for the Plasma sidebar.
-
Linux Kernel 6.15 First Release Candidate Now Available
Linux Torvalds has announced that the release candidate for the final release of the Linux 6.15 series is now available.
-
Akamai Will Host kernel.org
The organization dedicated to cloud-based solutions has agreed to host kernel.org to deliver long-term stability for the development team.