How can Microsoft Word files (.doc, .docx) be converted to HTML files as a batch process running on a Linux server?

link|improve this question
1  
Can you use OpenOffice on that server? – slhck May 13 '11 at 8:55
@slhck: Yes I can. – k12345 May 13 '11 at 13:51
feedback

1 Answer

Install unoconv and put together a script, e.g:

for f in *.doc
do
    unoconv -f html $f
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.