Read more

Linux: How to print PDF files from the command line

Arne Hartherz
April 17, 2014Software engineer at makandra GmbH

Sometimes you may want to print files from the command line, especially when you have lots of them.
You can use lp for that.

Illustration web development

Do you need DevOps-experts?

Your development team has a full backlog? No time for infrastructure architecture? Our DevOps team is ready to support you!

  • We build reliable cloud solutions with Infrastructure as code
  • We are experts in security, Linux and databases
  • We support your dev team to perform
Read more Show archive.org snapshot

To print a single example.pdf file on your default printer, simply say:

lp example.pdf

lp accepts multiple filenames, so to print all PDF files in the current directory:

lp *.pdf

You can specify a printer via the -d switch:

lp -d YOUR_PRINTER_NAME *.pdf

Your printer's name is then one you defined on your system. You can check with your CUPS configuration by visiting http://localhost:631/printers. So, for example:

lp -d Brother-MFC-9840CDW *.pdf

Plain-text or PostScript files are also supported.

Posted by Arne Hartherz to makandra dev (2014-04-17 10:10)