Printing in Gnome
Today I had to print +30 invoices. I had created 30 pdf’s but couldn’t find a way to print them all at once. In Windows you just drag them to the printer you want to print on (doesn’t matter what format) and Windows does the rest.
Does anybody know how you can do this in Gnome, this would be very handy at the end of every quartor ![]()
April 13th, 2010 at 8:58 am
This is what I do:
pdftk *pdf cat output Q1.pdf
And then print.
April 13th, 2010 at 9:08 am
for f in *.pdf *.PDF; do lpr $f; done
April 13th, 2010 at 10:00 am
lp *.pdf
April 13th, 2010 at 12:04 pm
I use a Makefile for my invoices. It basically drives LaTeX and mainly exists to keep track of the numbering, but I also have a “make print” target that spews PostScript to the printer.
April 19th, 2010 at 9:25 am
And what if I wanted to do it from gnome without dropping to the command line?