Batch convert RTF to PDF
automated, scripts, shell | pfortuny | (0)
You've got the full details here (the OpenOffice Forum site). After following the instructions there, I was able to convert a bunch of some 500 rtf files into pdf's with the following single 'line of code' (although there must be a newline after the first quote ')
$ find /Users/pedrofortunyayuso/Desktop/fichitas -name "*rtf" | while read -r i ; do
/Applications/NeoOffice.app/Contents/MacOS/soffice -invisible
"macro:///Standard.MyConversions.SaveASPDF($i)" ; done
All the above shows my computer as an evident OS X, but this works on Windows (the referred site does the job on Windows, using, obviously a different shell construct) and, as far as I know, on ...