With Microsoft Word on Windows, I can select a bunch of documents, right-click, and select "print". There doesn't seem to be any such option for OpenOffice.org running on Ubuntu 9.10. I have a folder of about 40 documents that I want to print--is there any easy way to do this?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Based on this question, you could do this with a bash script:

#!/bin/bash

for file in $(ls ~/yourdocs/); do
    ooffice -pt pdfprinter $file
done
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.