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 🙂
This is what I do:
pdftk *pdf cat output Q1.pdf
And then print.
for f in *.pdf *.PDF; do lpr $f; done
lp *.pdf
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.
And what if I wanted to do it from gnome without dropping to the command line?