How to print all files from a directory with lpr?
I feel dumb asking this, because there's probably a really really
simple solution. However, this has been driving me nuts all morning.
How do I print all the files of type *.pdf from a directory using lpr?
I tried "lpr *.pdf", but that just prints the first file.
I tried a little bash script of
for a in *.pdf
do
lpr "$a"
done
I tried that with and without the quotes, and that doesn't work
either. I give up and yield to the deeper knowledge of the group.
Ideas?
--
J'm Sm'th
Where there's smoke, there's incomplete combustion.
.
Relevant Pages
- Re: [opensuse] Re: DIA export of pdf
... Then I had a dialog box that allowed the pdf printer ... I installed dia on a windows ... lpr causes the drawing to go to my printer. ... so what am I missing that allows DIA to directly print to a pdf printer? ... (SuSE) - Re: printing man pages via lpr???
... I've been fiddling with tee and lpr, ... You can even print to PDF and then use Kword to edit the PDF ... Fundamentalism is fundamentally wrong. ... (linux.redhat.misc) - Re: LPRng x pdf files
... % lpr filename.pdf ... Or you can use gv's or xpdf's print option which should place ... the PDF file's content into the printer job queue. ... (freebsd-questions) - Re: printing pages of dynamic height
... > Tarlika Elisabeth Schmitz wrote: ... Do I have to write the PDF to disk first? ... This creates a runtime process which executes lpr parameterized with the ... lpr will wait until the print date are written to its input stream ... (comp.lang.java.programmer) - Re: Cant print from Acrobat Reader while using cups
... >> When you have a PDF up in Adobe, go to the menu and click File and choose ... What is the Printer Command you see? ... Is it 'lpr' For the hell of it, ... (comp.os.linux.misc) |
|