Home » Questions » Computers [ Ask a new question ]

How do I print a bunch of OpenOfficedotorg documents at once?

How do I print a bunch of OpenOfficedotorg documents at once?

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 OpenOfficedotorg 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?

Asked by: Guest | Views: 225
Total answers/comments: 1
bert [Entry]

"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"